You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
388 B
14 lines
388 B
3 years ago
|
using MongoDB.Bson.Serialization.Attributes;
|
||
|
|
||
|
namespace ET
|
||
|
{
|
||
|
public class Menu: Entity, IAwake, ISerializeToEntity
|
||
|
{
|
||
|
public int ConfigId = 0; //配置id
|
||
|
public int Proficiency = 0; //熟练度
|
||
|
public int State = 0; //是否满值
|
||
|
|
||
|
[BsonIgnore]
|
||
|
public SynthesisConfig Config => SynthesisConfigCategory.Instance.Get(this.ConfigId);
|
||
|
}
|
||
|
}
|