mirror of
https://github.com/Jetsparrow/karmabot.git
synced 2026-01-21 00:56:09 +03:00
21 lines
461 B
C#
21 lines
461 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace JetKarmaBot.Models
|
|
{
|
|
public partial class User
|
|
{
|
|
public User()
|
|
{
|
|
AwardFrom = new HashSet<Award>();
|
|
AwardTo = new HashSet<Award>();
|
|
}
|
|
|
|
public long Userid { get; set; }
|
|
public string Username { get; set; }
|
|
|
|
public ICollection<Award> AwardFrom { get; set; }
|
|
public ICollection<Award> AwardTo { get; set; }
|
|
}
|
|
}
|