lampac/Shared/Models/SISI/Base/ChannelItem.cs
lampac-talks f843f04fd4 chore: initial commit 154.3
Signed-off-by: lampac-talks <lampac-talks@users.noreply.github.com>
2026-01-30 16:23:09 +03:00

19 lines
447 B
C#

namespace Shared.Models.SISI.Base
{
public struct ChannelItem
{
public ChannelItem(string title, string playlist_url, int displayindex)
{
this.title = title;
this.playlist_url = playlist_url;
this.displayindex = displayindex;
}
public string title { get; set; }
public string playlist_url { get; set; }
public int displayindex { get; set; }
}
}