using Newtonsoft.Json; namespace backend.Entities; public class User { public int Id { get; set; } public string Email { get; set; } public string Password { get; set; } public bool IsAdmin { get; set; } public bool IsConfirmed { get; set; } public bool IsVip { get; set; } public string? ConfirmationURL { get; set; } public DateTime? ConfirmationValidTo { get; set; } public string? PasswordResetURL { get; set; } public DateTime? PasswordResetValidTo { get; set; } public virtual Restaurant Restaurant { get; set; } }