mirror of
				https://github.com/lantean-code/qbtmud.git
				synced 2025-11-03 21:43:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			296 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			296 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace Lantean.QBTMud.Models
 | 
						|
{
 | 
						|
    public record Category
 | 
						|
    {
 | 
						|
        public Category(string name, string savePath)
 | 
						|
        {
 | 
						|
            Name = name;
 | 
						|
            SavePath = savePath;
 | 
						|
        }
 | 
						|
 | 
						|
        public string Name { get; set; }
 | 
						|
        public string SavePath { get; set; }
 | 
						|
    }
 | 
						|
} |