Files
Library/OwnChar/Model/UserProfile.cs
2024-06-11 06:59:34 +02:00

7 lines
130 B
C#

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