using System;
namespace Jellyfin.Api.Models.PluginDtos
{
    /// 
    /// MB Registration Record.
    /// 
    public class MBRegistrationRecord
    {
        /// 
        /// Gets or sets expiration date.
        /// 
        public DateTime ExpirationDate { get; set; }
        /// 
        /// Gets or sets a value indicating whether is registered.
        /// 
        public bool IsRegistered { get; set; }
        /// 
        /// Gets or sets a value indicating whether reg checked.
        /// 
        public bool RegChecked { get; set; }
        /// 
        /// Gets or sets a value indicating whether reg error.
        /// 
        public bool RegError { get; set; }
        /// 
        /// Gets or sets a value indicating whether trial version.
        /// 
        public bool TrialVersion { get; set; }
        /// 
        /// Gets or sets a value indicating whether is valid.
        /// 
        public bool IsValid { get; set; }
    }
}