-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from BellumGens/update-player-profile
feat(player): updating models
- Loading branch information
Showing
4 changed files
with
74 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
namespace StarCraft2Models | ||
{ | ||
public class PlayerProfileSummary | ||
{ | ||
/// <summary> | ||
/// Gets or sets the player profile identifier. | ||
/// </summary> | ||
/// <value> | ||
/// The player profile identifier. | ||
/// </value> | ||
public string id { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the player realm identifier. | ||
/// </summary> | ||
/// <value> | ||
/// The player realm identifier. | ||
/// </value> | ||
public int realm { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the player display name. | ||
/// </summary> | ||
/// <value> | ||
/// The player display name. | ||
/// </value> | ||
public string displayName { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the portrait url. | ||
/// </summary> | ||
/// <value> | ||
/// The player portrait url. | ||
/// </value> | ||
public string portrait { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the player terran decal. | ||
/// </summary> | ||
/// <value> | ||
/// The player terran decal. | ||
/// </value> | ||
public string decalTerran { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the player protoss decal. | ||
/// </summary> | ||
/// <value> | ||
/// The player protoss decal. | ||
/// </value> | ||
public string decalProtoss { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the player zerg decal. | ||
/// </summary> | ||
/// <value> | ||
/// The player zerg decal. | ||
/// </value> | ||
public string decalZerg { get; set; } | ||
|
||
public int totalSwarmLevel { get; set; } | ||
|
||
public int totalAchievementPoints { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters