mirror of
https://github.com/Jetsparrow/karmabot.git
synced 2026-01-21 00:56:09 +03:00
18 lines
411 B
C#
18 lines
411 B
C#
namespace JetKarmaBot.Models;
|
|
|
|
public partial class AwardType
|
|
{
|
|
public AwardType()
|
|
{
|
|
Awards = new HashSet<Award>();
|
|
}
|
|
|
|
public sbyte AwardTypeId { get; set; }
|
|
public string CommandName { get; set; }
|
|
public string Name { get; set; }
|
|
public string Symbol { get; set; }
|
|
public string Description { get; set; }
|
|
|
|
public virtual ICollection<Award> Awards { get; set; }
|
|
}
|