15 lines
296 B
C#
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;
|
|
}
|