Files
IPTVplayer/TV Player WPF/ViewModels/GroupInfo.cs
T
Vova 9b8e8a835a add settings screen
get playlist from settings, in first run - open Settings
2024-01-30 16:31:11 +02:00

10 lines
166 B
C#

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