9 lines
177 B
C#
9 lines
177 B
C#
namespace OwnChar.Model
|
|
{
|
|
public class PropertyCategory(string name)
|
|
{
|
|
public ulong Id { get; set; }
|
|
public string Name { get; set; } = name;
|
|
}
|
|
}
|