2024-10-27 22:09:46 +01:00
|
|
|
|
namespace WatchIt.Website.Services.Authentication;
|
2024-07-30 16:19:51 +02:00
|
|
|
|
|
|
|
|
|
|
public class User
|
|
|
|
|
|
{
|
|
|
|
|
|
#region PROPERTIES
|
|
|
|
|
|
|
|
|
|
|
|
public required long Id { get; init; }
|
|
|
|
|
|
public required string Username { get; init; }
|
|
|
|
|
|
public required string Email { get; init; }
|
|
|
|
|
|
public required bool IsAdmin { get; init; }
|
|
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
}
|