CTT/Server/Model/Game/Data/StarSoulAttributeConfig.cs

28 lines
606 B
C#
Raw Normal View History

2021-05-01 22:06:12 +08:00
using ET;
using MongoDB.Bson.Serialization.Attributes;
namespace Cal.DataTable
{
[Config]
public partial class StarSoulAttributeConfigCategory : ACategory<StarSoulAttributeConfig>
{
public static StarSoulAttributeConfigCategory Instance;
public StarSoulAttributeConfigCategory()
{
Instance = this;
}
}
public partial class StarSoulAttributeConfig:IConfig
{
[BsonId]
public long Id { get; set; }
public int Type;
public int Quality;
public int Key;
[BsonRepresentation(MongoDB.Bson.BsonType.Double, AllowTruncation = true)]
public float Value;
public int ViceWeight;
}
}