Files
US-Entry-Coach/USEntryCoach.Server/Data/User.cs
2025-05-22 18:26:09 +02:00

10 lines
216 B
C#

namespace USEntryCoach.Server.Data;
public class User
{
public Guid Id { get; set; }
public string Username { get; set; }
public string Password { get; set; }
public UserRole Role { get; set; }
}