Beispiel #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="LolPlayerBehaviorBanNotification" /> class.
 /// </summary>
 /// <param name="DisplayReformCard">DisplayReformCard.</param>
 /// <param name="Id">Id.</param>
 /// <param name="IsPermaBan">IsPermaBan.</param>
 /// <param name="Reason">Reason.</param>
 /// <param name="Source">Source.</param>
 /// <param name="TimeUntilBanExpires">TimeUntilBanExpires.</param>
 public LolPlayerBehaviorBanNotification(bool?DisplayReformCard = default(bool?), long?Id = default(long?), bool?IsPermaBan = default(bool?), string Reason = default(string), LolPlayerBehaviorNotificationSource Source = default(LolPlayerBehaviorNotificationSource), long?TimeUntilBanExpires = default(long?))
 {
     this.DisplayReformCard = DisplayReformCard;
     this.Id                  = Id;
     this.IsPermaBan          = IsPermaBan;
     this.Reason              = Reason;
     this.Source              = Source;
     this.TimeUntilBanExpires = TimeUntilBanExpires;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="LolPlayerBehaviorRestrictionNotification" /> class.
 /// </summary>
 /// <param name="DisplayReformCard">DisplayReformCard.</param>
 /// <param name="GamesRemaining">GamesRemaining.</param>
 /// <param name="Id">Id.</param>
 /// <param name="Source">Source.</param>
 public LolPlayerBehaviorRestrictionNotification(bool?DisplayReformCard = default(bool?), long?GamesRemaining = default(long?), long?Id = default(long?), LolPlayerBehaviorNotificationSource Source = default(LolPlayerBehaviorNotificationSource))
 {
     this.DisplayReformCard = DisplayReformCard;
     this.GamesRemaining    = GamesRemaining;
     this.Id     = Id;
     this.Source = Source;
 }