Files
Tornado3_2026Election/Tornado3_2026Election/Persistence/ChannelState.cs
2026-03-25 17:26:16 +09:00

14 lines
328 B
C#

using System.Collections.Generic;
using Tornado3_2026Election.Domain;
namespace Tornado3_2026Election.Persistence;
public sealed class ChannelState
{
public bool LoopEnabled { get; set; }
public EmptyScheduleBehavior EmptyScheduleBehavior { get; set; }
public List<ScheduleItemState> Items { get; set; } = [];
}