mirror of
https://github.com/lantean-code/qbtmud.git
synced 2025-10-23 04:52:22 +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; }
|
|
}
|
|
} |