Files
SVSimServer/SVSim.EmulatedEntrypoint/Models/Dtos/SpecialRotationSchedule.cs
2026-05-23 15:47:23 -04:00

15 lines
418 B
C#

using MessagePack;
using System.Text.Json.Serialization;
namespace SVSim.EmulatedEntrypoint.Models.Dtos;
[MessagePackObject]
public class SpecialRotationSchedule
{
[JsonPropertyName("gathering")]
[Key("gathering")]
public DateRange Gathering { get; set; } = new DateRange();
[JsonPropertyName("free_battle")]
[Key("free_battle")]
public DateRange FreeBattle { get; set; } = new DateRange();
}