using System;
namespace MediaBrowser.Model.Registration
{
    public class RegistrationInfo
    {
        /// 
        /// Gets or sets the name.
        /// 
        /// The name.
        public string Name { get; set; }
        /// 
        /// Gets or sets the expiration date.
        /// 
        /// The expiration date.
        public DateTime ExpirationDate { get; set; }
        /// 
        /// Gets or sets a value indicating whether this instance is trial.
        /// 
        /// true if this instance is trial; otherwise, false.
        public bool IsTrial { get; set; }
        /// 
        /// Gets or sets a value indicating whether this instance is registered.
        /// 
        /// true if this instance is registered; otherwise, false.
        public bool IsRegistered { get; set; }
    }
}