karmabot/JetKarmaBot/Models/Awardtype.cs
2019-01-02 17:07:31 +03:00

22 lines
504 B
C#

using System;
using System.Collections.Generic;
namespace JetKarmaBot.Models
{
public partial class Awardtype
{
public Awardtype()
{
Award = 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 ICollection<Award> Award { get; set; }
}
}