12 lines
295 B
C#
12 lines
295 B
C#
namespace OwnChar.Model
|
|
{
|
|
public class UserAccount
|
|
{
|
|
public ulong Id { get; set; }
|
|
public string? Username { get; set; }
|
|
public string? Password { get; set; }
|
|
public string? Email { get; set; }
|
|
public UserProfile? Profile { get; set; }
|
|
}
|
|
}
|