Files
jellyfin-jellyfin-1/MediaBrowser.Model/Entities/SupporterInfo.cs

15 lines
449 B
C#
Raw Normal View History

2014-10-08 19:31:44 -04:00
using System;
namespace MediaBrowser.Model.Entities
{
public class SupporterInfo
{
public string Email { get; set; }
public string SupporterKey { get; set; }
public DateTime? ExpirationDate { get; set; }
public DateTime RegistrationDate { get; set; }
public string PlanType { get; set; }
public bool IsActiveSupporter { get; set; }
public bool IsExpiredSupporter { get; set; }
}
}