mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			282 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			282 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System;
 | 
						|
 | 
						|
namespace MediaBrowser.Common.Implementations.Security
 | 
						|
{
 | 
						|
    class RegRecord
 | 
						|
    {
 | 
						|
        public string featId { get; set; }
 | 
						|
        public bool registered { get; set; }
 | 
						|
        public DateTime expDate { get; set; }
 | 
						|
        public string key { get; set; }
 | 
						|
    }
 | 
						|
} |