-
Notifications
You must be signed in to change notification settings - Fork 13
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 #29 from xivapi/linkshells
Add support for linkshells and CWLS
- Loading branch information
Showing
33 changed files
with
1,952 additions
and
432 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
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
21 changes: 21 additions & 0 deletions
21
NetStone/Definitions/Model/CWLS/CrossworldLinkshellDefinition.cs
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,21 @@ | ||
using Newtonsoft.Json; | ||
|
||
namespace NetStone.Definitions.Model.CWLS; | ||
|
||
/// <summary> | ||
/// Definitions for cross world link shell | ||
/// </summary> | ||
public class CrossworldLinkshellDefinition : IDefinition | ||
{ | ||
/// <summary> | ||
/// Name | ||
/// </summary> | ||
[JsonProperty("NAME")] | ||
public DefinitionsPack Name { get; set; } | ||
|
||
/// <summary> | ||
/// Name | ||
/// </summary> | ||
[JsonProperty("DC")] | ||
public DefinitionsPack DataCenter { get; set; } | ||
} |
50 changes: 50 additions & 0 deletions
50
NetStone/Definitions/Model/CWLS/CrossworldLinkshellMemberDefinition.cs
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,50 @@ | ||
using Newtonsoft.Json; | ||
|
||
namespace NetStone.Definitions.Model.CWLS; | ||
|
||
|
||
/// <summary> | ||
/// | ||
/// </summary> | ||
public class CrossworldLinkshellMemberEntryDefinition : PagedEntryDefinition | ||
{ | ||
/// <summary> | ||
/// Avatar | ||
/// </summary> | ||
[JsonProperty("AVATAR")] public DefinitionsPack Avatar { get; set; } | ||
|
||
/// <summary> | ||
/// ID | ||
/// </summary> | ||
[JsonProperty("ID")] public DefinitionsPack Id { get; set; } | ||
|
||
/// <summary> | ||
/// Name | ||
/// </summary> | ||
[JsonProperty("NAME")] public DefinitionsPack Name { get; set; } | ||
|
||
/// <summary> | ||
/// Rank | ||
/// </summary> | ||
[JsonProperty("RANK")] public DefinitionsPack Rank { get; set; } | ||
|
||
/// <summary> | ||
/// Rank Icon | ||
/// </summary> | ||
[JsonProperty("RANK_ICON")] public DefinitionsPack RankIcon { get; set; } | ||
|
||
/// <summary> | ||
/// Linkshell rank | ||
/// </summary> | ||
[JsonProperty("LINKSHELL_RANK")] public DefinitionsPack LinkshellRank { get; set; } | ||
|
||
/// <summary> | ||
/// Linkshell rank Icon | ||
/// </summary> | ||
[JsonProperty("LINKSHELL_RANK_ICON")] public DefinitionsPack LinkshellRankIcon { get; set; } | ||
|
||
/// <summary> | ||
/// Server | ||
/// </summary> | ||
[JsonProperty("SERVER")] public DefinitionsPack Server { get; set; } | ||
} |
Oops, something went wrong.