10 lines
222 B
C#
10 lines
222 B
C#
namespace OwnChar.Model
|
|
{
|
|
public class UserProfile(string name)
|
|
{
|
|
public ulong Id { get; set; }
|
|
public string Name { get; set; } = name;
|
|
public UserAccount? Account { get; set; }
|
|
}
|
|
}
|