Files
Library/OwnChar/Model/Property.cs
2024-05-15 08:54:49 +02:00

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; }
}
}