Files
SVSimServer/SVSim.EmulatedEntrypoint/Models/Dtos/SpecialRotationSchedule.cs
2024-09-12 00:35:31 -04:00

12 lines
306 B
C#

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();
}