초기 커밋.

This commit is contained in:
2026-03-25 17:26:16 +09:00
commit 7b0d900bdb
86 changed files with 20087 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
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; } = [];
}