using System; using System.Collections.Generic; namespace JetKarmaBot.Models { public partial class User { public User() { AwardFrom = new HashSet(); AwardTo = new HashSet(); } public long Userid { get; set; } public string Username { get; set; } public ICollection AwardFrom { get; set; } public ICollection AwardTo { get; set; } } }