27 lines
510 B
C#
27 lines
510 B
C#
using ET;
|
|
using MongoDB.Bson.Serialization.Attributes;
|
|
|
|
namespace Cal.DataTable
|
|
{
|
|
[Config]
|
|
public partial class StarSoulLevelConfigCategory : ACategory<StarSoulLevelConfig>
|
|
{
|
|
public static StarSoulLevelConfigCategory Instance;
|
|
public StarSoulLevelConfigCategory()
|
|
{
|
|
Instance = this;
|
|
}
|
|
}
|
|
|
|
public partial class StarSoulLevelConfig:IConfig
|
|
{
|
|
[BsonId]
|
|
public long Id { get; set; }
|
|
public byte Quality;
|
|
public byte Level;
|
|
public int NeedExp;
|
|
public int Exp;
|
|
public int NeedCoin;
|
|
}
|
|
}
|