14 lines
328 B
C#
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; } = [];
|
|
}
|