-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changes towards Update 1.1.4 support, game still refuses to connect t…
…hought
- Loading branch information
Showing
7 changed files
with
137 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
using Newtonsoft.Json; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace PayCheckServerLib.Jsons | ||
{ | ||
public class Profile | ||
{ | ||
public partial class ProfileResp | ||
{ | ||
[JsonProperty("userId")] | ||
public string UserId { get; set; } | ||
[JsonProperty("avatarLargeUrl")] | ||
public string AvatarLargeUrl { get; set; } | ||
[JsonProperty("avatarSmallUrl")] | ||
public string AvatarSmallUrl { get; set; } | ||
[JsonProperty("avatarUrl")] | ||
public string AvatarUrl { get; set; } | ||
|
||
[JsonProperty("customAttributes")] | ||
public object CustomAttributes { get; set; } | ||
[JsonProperty("namespace")] | ||
public string Namespace { get; set; } | ||
[JsonProperty("publicId")] | ||
public string PublicId { 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
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