CTT/Unity/Assets/Hotfix/Logic/Model/Module/Data/DataTable/StrengthPlusConfig.cs

24 lines
499 B
C#
Raw Normal View History

2022-11-26 23:20:12 +08:00
using ET;
using MongoDB.Bson.Serialization.Attributes;
namespace Cal.DataTable
{
[Config]
public partial class StrengthPlusConfigCategory : ACategory<StrengthPlusConfig>
{
public static StrengthPlusConfigCategory Instance;
public StrengthPlusConfigCategory()
{
Instance = this;
}
}
public partial class StrengthPlusConfig:IConfig
{
[BsonId]
public long Id { get; set; }
[BsonRepresentation(MongoDB.Bson.BsonType.Double, AllowTruncation = true)]
public float AddProb;
}
}