You've already forked CC-Framework.BriskGameServer
18 lines
472 B
C#
18 lines
472 B
C#
public sealed class BriskSpaceStats
|
|
{
|
|
public string ProjectAccountId;
|
|
public string PlayerId;
|
|
public string LoginProvider;
|
|
public string LoginUserId;
|
|
public string Nickname;
|
|
public string AvatarUrl;
|
|
public bool ContentExists;
|
|
public long ContentVersion;
|
|
public string ContentType;
|
|
public long ContentSizeBytes;
|
|
public string ContentChecksum;
|
|
public long LikeCount;
|
|
public long VisitCount;
|
|
public string UpdatedAt;
|
|
}
|