24 lines
432 B
C#
24 lines
432 B
C#
|
using ET;
|
||
|
using MongoDB.Bson.Serialization.Attributes;
|
||
|
|
||
|
namespace Cal.DataTable
|
||
|
{
|
||
|
[Config]
|
||
|
public partial class TransferJobConfigCategory : ACategory<TransferJobConfig>
|
||
|
{
|
||
|
public static TransferJobConfigCategory Instance;
|
||
|
public TransferJobConfigCategory()
|
||
|
{
|
||
|
Instance = this;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public partial class TransferJobConfig:IConfig
|
||
|
{
|
||
|
[BsonId]
|
||
|
public long Id { get; set; }
|
||
|
public int Type;
|
||
|
public int[] ids;
|
||
|
}
|
||
|
}
|