Files
Library/OwnChar/Model/PropertyCategory.cs
2024-05-28 15:18:27 +02:00

8 lines
153 B
C#

namespace OwnChar.Model
{
public abstract class PropertyCategory : IOwnCharObject
{
public virtual string? Name { get; set; }
}
}