Files
IPTVplayer/TV Player WPF/PlaylistWorker/GroupInfo.cs
T
2024-05-08 18:38:26 +03:00

10 lines
166 B
C#

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