25 lines
508 B
C#
25 lines
508 B
C#
|
using ET;
|
||
|
using MongoDB.Bson.Serialization.Attributes;
|
||
|
|
||
|
namespace Cal.DataTable
|
||
|
{
|
||
|
[Config]
|
||
|
public partial class JourneyOfDeathCopyConfigCategory : ACategory<JourneyOfDeathCopyConfig>
|
||
|
{
|
||
|
public static JourneyOfDeathCopyConfigCategory Instance;
|
||
|
public JourneyOfDeathCopyConfigCategory()
|
||
|
{
|
||
|
Instance = this;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public partial class JourneyOfDeathCopyConfig:IConfig
|
||
|
{
|
||
|
[BsonId]
|
||
|
public long Id { get; set; }
|
||
|
public byte Difficulty;
|
||
|
public byte BossIndex;
|
||
|
public int[] MonsterIdArr;
|
||
|
}
|
||
|
}
|