sodoff/src/Model/User.cs
2025-07-28 09:43:49 +00:00

23 lines
604 B
C#

using System.ComponentModel.DataAnnotations;
using System.Text.Json.Serialization;
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!;
[JsonIgnore]
public virtual ICollection<Session> Sessions { get; set; } = null!;
public virtual ICollection<Viking> Vikings { get; set; } = null!;
public virtual ICollection<PairData> PairData { get; set; } = null!;
}