blob: 49c5af8d82e2d3f2533089403c4c161bdc92a843 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
namespace MediaBrowser.Common.Implementations.Security
{
internal class SuppporterInfoResponse
{
public string email { get; set; }
public string supporterKey { get; set; }
public int totalRegs { get; set; }
public int totalMachines { get; set; }
public string expDate { get; set; }
public string regDate { get; set; }
public string planType { get; set; }
}
}
|