Files
app/windows/StreamPlayer.Desktop/Models/ChannelSection.cs
2025-12-17 19:20:55 +00:00

15 lines
296 B
C#

using System.Collections.Generic;
namespace StreamPlayer.Desktop.Models;
public enum SectionType
{
Events,
Channels
}
public sealed record ChannelSection(string Title, SectionType Type, IReadOnlyList<StreamChannel> Channels)
{
public bool IsEvents => Type == SectionType.Events;
}