mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			383 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			383 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
 | 
						|
namespace MediaBrowser.Model.Entities
 | 
						|
{
 | 
						|
    public class MBRegistrationRecord
 | 
						|
    {
 | 
						|
        public DateTime ExpirationDate { get; set; }
 | 
						|
        public bool IsRegistered { get; set; }
 | 
						|
        public bool RegChecked { get; set; }
 | 
						|
        public bool RegError { get; set; }
 | 
						|
        public bool TrialVersion { get; set; }
 | 
						|
        public bool IsValid { get; set; }
 | 
						|
    }
 | 
						|
} |