jellyfin/MediaBrowser.Common.Implementations/Security/SuppporterInfoResponse.cs

15 lines
431 B
C#
Raw Normal View History

2014-08-31 21:15:33 +02:00

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; }
}
}