gather reward partial impl

This commit is contained in:
rfi
2023-12-07 22:56:45 +07:00
parent 5824edbf4f
commit fce32e4d72
3 changed files with 86 additions and 0 deletions

View File

@@ -109,6 +109,9 @@ namespace AscNet.Common.Database
[BsonRequired]
public List<HeadPortraitList> HeadPortraits { get; set; }
[BsonElement("gather_rewards")]
public List<int> GatherRewards { get; set; } = new();
[BsonElement("team_groups")]
[BsonRequired]
[BsonDictionaryOptions(DictionaryRepresentation.ArrayOfDocuments)]

View File

@@ -1025,6 +1025,13 @@ namespace AscNet.Common.MsgPack
}
[global::MessagePack.MessagePackObject(true)]
public class NotifyGatherReward
{
public Int32 Id { get; set; }
}
[global::MessagePack.MessagePackObject(true)]
public class NotifyDrawTicketData
{