mirror of
https://github.com/Jetsparrow/karmabot.git
synced 2026-01-21 09:06:09 +03:00
22 lines
504 B
C#
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; }
|
|
}
|
|
}
|