You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
431 B
15 lines
431 B
|
|
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; }
|
|
}
|
|
}
|