/// <summary>
 /// Initializes a new instance of the <see cref="DestinyHistoricalStatsDestinyLeaderboardEntry" /> class.
 /// </summary>
 /// <param name="Rank">Where this player ranks on the leaderboard. A value of 1 is the top rank..</param>
 /// <param name="Player">Identity details of the player.</param>
 /// <param name="CharacterId">ID of the player&#39;s best character for the reported stat..</param>
 /// <param name="Value">Value of the stat for this player.</param>
 public DestinyHistoricalStatsDestinyLeaderboardEntry(int?Rank = default(int?), DestinyHistoricalStatsDestinyPlayer Player = default(DestinyHistoricalStatsDestinyPlayer), long?CharacterId = default(long?), DestinyHistoricalStatsDestinyHistoricalStatsValue Value = default(DestinyHistoricalStatsDestinyHistoricalStatsValue))
 {
     this.Rank        = Rank;
     this.Player      = Player;
     this.CharacterId = CharacterId;
     this.Value       = Value;
 }
예제 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="DestinyHistoricalStatsDestinyPostGameCarnageReportEntry" /> class.
 /// </summary>
 /// <param name="Standing">Standing of the player.</param>
 /// <param name="Score">Score of the player if available.</param>
 /// <param name="Player">Identity details of the player.</param>
 /// <param name="CharacterId">ID of the player&#39;s character used in the activity..</param>
 /// <param name="Values">Collection of stats for the player in this activity..</param>
 /// <param name="Extended">Extended data extracted from the activity blob..</param>
 public DestinyHistoricalStatsDestinyPostGameCarnageReportEntry(int?Standing = default(int?), DestinyHistoricalStatsDestinyHistoricalStatsValue Score = default(DestinyHistoricalStatsDestinyHistoricalStatsValue), DestinyHistoricalStatsDestinyPlayer Player = default(DestinyHistoricalStatsDestinyPlayer), long?CharacterId = default(long?), Dictionary <string, DestinyHistoricalStatsDestinyHistoricalStatsValue> Values = default(Dictionary <string, DestinyHistoricalStatsDestinyHistoricalStatsValue>), DestinyHistoricalStatsDestinyPostGameCarnageReportExtendedData Extended = default(DestinyHistoricalStatsDestinyPostGameCarnageReportExtendedData))
 {
     this.Standing    = Standing;
     this.Score       = Score;
     this.Player      = Player;
     this.CharacterId = CharacterId;
     this.Values      = Values;
     this.Extended    = Extended;
 }