Skip to content

Commit 1d08af0

Browse files
authored
Merge pull request #29 from I-MrFixIt-I/master
Added IconId to ChannelEditedEventArgs
2 parents 9ac0ae6 + 105605a commit 1d08af0

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

TS3QueryLib.Core.Silverlight/Server/Notification/EventArgs/ChannelEditedEventArgs.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ public class ChannelEditedEventArgs : System.EventArgs, IDump
3434
public int? FlagMaxClientsUnlimited { get; protected set; }
3535
public int? FlagMaxFamilyClientsUnlimited { get; protected set; }
3636
public int? FlagMaxFamilyClientsInherited { get; protected set; }
37+
public uint? IconId { get; protected set; }
3738

3839
#endregion
3940

@@ -70,6 +71,7 @@ public ChannelEditedEventArgs(CommandParameterGroupList commandParameterGroupLis
7071
MaxClients = commandParameterGroupList.GetParameterValue<int?>("channel_maxclients");
7172
MaxFamilyClients = commandParameterGroupList.GetParameterValue<int?>("channel_maxfamilyclients");
7273
FlagMaxClientsUnlimited = commandParameterGroupList.GetParameterValue<int?>("channel_flag_maxclients_unlimited");
74+
IconId = commandParameterGroupList.GetParameterValue<uint?>("channel_icon_id");
7375
}
7476

7577
#endregion

0 commit comments

Comments
 (0)