namespace axXez.TS3.Protocol { /// Identifies the client who triggered a server event (ID, name, and UID). public class InvokerInfo : TsEntity { /// Session-based client ID of the invoker. [TsField("invokerid")] public int InvokerID { get; protected set; } /// Nickname of the invoker at the time of the action. [TsField("invokername")] public string InvokerName { get; protected set; } /// Unique identifier of the invoker. [TsField("invokeruid")] public string InvokerUID { get; protected set; } internal InvokerInfo(TsDataEntry data) : base(data) { } } }