10 lines
171 B
C#
10 lines
171 B
C#
namespace TV_Player.MAUI
|
|
{
|
|
[Serializable]
|
|
public class GroupInfo
|
|
{
|
|
public string Name { get; set; }
|
|
public int Count { get; set; }
|
|
}
|
|
}
|