Files
IPTVplayer/TV Player/ViewModels/M3UInfo.cs
T
2024-01-18 17:42:44 +02:00

15 lines
407 B
C#

namespace TV_Player.MAUI
{
public class M3UInfo
{
public string CUID { get; set; }
public string Number { get; set; }
public string TvgID { get; set; }
public string TvgName { get; set; }
public string GroupTitle { get; set; }
public string Logo { get; set; }
public string Name{ get; set; }
public string Url { get; set; }
}
}