mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-21 09:34:44 +01:00
add RegistrationInfo
This commit is contained in:
28
MediaBrowser.Model/Registration/RegistrationInfo.cs
Normal file
28
MediaBrowser.Model/Registration/RegistrationInfo.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
using System;
|
||||
|
||||
namespace MediaBrowser.Model.Registration
|
||||
{
|
||||
public class RegistrationInfo
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the name.
|
||||
/// </summary>
|
||||
/// <value>The name.</value>
|
||||
public string Name { get; set; }
|
||||
/// <summary>
|
||||
/// Gets or sets the expiration date.
|
||||
/// </summary>
|
||||
/// <value>The expiration date.</value>
|
||||
public DateTime ExpirationDate { get; set; }
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether this instance is trial.
|
||||
/// </summary>
|
||||
/// <value><c>true</c> if this instance is trial; otherwise, <c>false</c>.</value>
|
||||
public bool IsTrial { get; set; }
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether this instance is valid.
|
||||
/// </summary>
|
||||
/// <value><c>true</c> if this instance is valid; otherwise, <c>false</c>.</value>
|
||||
public bool IsValid { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user