DTOs for index mostly done, doing DB models
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
using MessagePack;
|
||||
|
||||
namespace SVSim.EmulatedEntrypoint.Models.Dtos;
|
||||
|
||||
[MessagePackObject]
|
||||
public class SpecialRotationSchedule
|
||||
{
|
||||
[Key("gathering")]
|
||||
public DateRange Gathering { get; set; } = new DateRange();
|
||||
[Key("free_battle")]
|
||||
public DateRange FreeBattle { get; set; } = new DateRange();
|
||||
}
|
||||
Reference in New Issue
Block a user