using System.ComponentModel.DataAnnotations.Schema; namespace JetKarmaBot.Models; public partial class User { public User() { AwardsFrom = new HashSet(); AwardsTo = new HashSet(); } public long UserId { get; set; } public string Username { get; set; } public DateTime CooldownDate { get; set; } [InverseProperty("From")] public virtual ICollection AwardsFrom { get; set; } [InverseProperty("To")] public virtual ICollection AwardsTo { get; set; } }