Files
IPTVplayer/TV Player/ViewModels/GroupInfo.cs
T
2024-05-05 16:19:58 +03:00

10 lines
171 B
C#

namespace TV_Player.MAUI
{
[Serializable]
public class GroupInfo
{
public string Name { get; set; }
public int Count { get; set; }
}
}