11 lines
268 B
C#
11 lines
268 B
C#
namespace OwnChar.Model
|
|
{
|
|
public class Property(string name)
|
|
{
|
|
public ulong Id { get; set; }
|
|
public string Name { get; set; } = name;
|
|
public PropertyCategory? Category { get; set; }
|
|
public object? Value { get; set; }
|
|
}
|
|
}
|