using System.ComponentModel.DataAnnotations; namespace sodoff.Model; public class User { [Key] public Guid Id { get; set; } [Required] public string Email { get; set; } = null!; [Required] public string Username { get; set; } = null!; [Required] public string Password { get; set; } = null!; public virtual ICollection Sessions { get; set; } = null!; public virtual ICollection Vikings { get; set; } = null!; public virtual ICollection PairData { get; set; } = null!; public virtual ICollection Bans { get; set; } = null!; }