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

25 lines
519 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

namespace Shared.Models.Online.VoKino
{
public class Сhannel
{
public string title { get; set; }
public string ident { get; set; }
public string playlist_url { get; set; }
public bool selected { get; set; }
public Сhannel[] submenu { get; set; }
public string stream_url { get; set; }
public string quality_full { get; set; }
public Dictionary<string, string> extra { get; set; }
public Details details { get; set; }
}
}