任务系统一半多,商城筛选功能,一些细节和免费包
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
[Serializable]
|
||||
public class ExpBottleEntry
|
||||
{
|
||||
public string key;
|
||||
public int count;
|
||||
}
|
||||
|
||||
[Serializable]
|
||||
public class ExpBottleLedgerPayload
|
||||
{
|
||||
public int version = 1;
|
||||
public long lastUpdatedUtcTicks;
|
||||
public List<ExpBottleEntry> entries = new List<ExpBottleEntry>();
|
||||
}
|
||||
|
||||
[Serializable]
|
||||
public class ExpBottleLedgerEnvelope
|
||||
{
|
||||
public string payload;
|
||||
public string signature;
|
||||
}
|
||||
|
||||
[Serializable]
|
||||
public class ExpBottleSnapshotEntry
|
||||
{
|
||||
public string key;
|
||||
public int count;
|
||||
}
|
||||
Reference in New Issue
Block a user