You've already forked CC-Framework.BriskGameServer
Release v0.2.0 archive and space API update
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
public sealed class BriskSpaceContentDownloadResult
|
||||
{
|
||||
public byte[] Bytes;
|
||||
public long Version;
|
||||
public string Checksum;
|
||||
public string ContentType;
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: e6f27d1ba8b24f5e85362b9c6c9f4c01
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,9 @@
|
||||
public sealed class BriskSpaceContentUpdateResult
|
||||
{
|
||||
public string PlayerId;
|
||||
public long ContentVersion;
|
||||
public string ContentType;
|
||||
public long ContentSizeBytes;
|
||||
public string ContentChecksum;
|
||||
public string UpdatedAt;
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 4bd67f378d264cc69c71f1d03d5b564b
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,7 @@
|
||||
public sealed class BriskSpaceLikeItem
|
||||
{
|
||||
public string PlayerId;
|
||||
public string Nickname;
|
||||
public string AvatarUrl;
|
||||
public string CreatedAt;
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: ef7d53b3f0ab43e7b74a4c23a76f84f5
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -0,0 +1,5 @@
|
||||
public sealed class BriskSpaceLikeResult
|
||||
{
|
||||
public bool Liked;
|
||||
public long LikeCount;
|
||||
}
|
||||
@@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 966f47c348db46dfb60120dba20f1ffb
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
@@ -1,5 +1,17 @@
|
||||
public sealed class BriskSpaceStats
|
||||
{
|
||||
public int LikeCount;
|
||||
public int VisitCount;
|
||||
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;
|
||||
}
|
||||
|
||||
@@ -1,7 +1,18 @@
|
||||
public sealed class BriskSpaceView
|
||||
{
|
||||
public string ProjectAccountId;
|
||||
public string PlayerId;
|
||||
public string LoginProvider;
|
||||
public string LoginUserId;
|
||||
public object Payload;
|
||||
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 bool LikedByMe;
|
||||
public string UpdatedAt;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user