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

22 lines
587 B
C#

using System;
using System.Collections.Generic;
namespace JetKarmaBot.Models
{
public partial class Award
{
public int Awardid { get; set; }
public long Chatid { get; set; }
public long Fromid { get; set; }
public long Toid { get; set; }
public sbyte Awardtypeid { get; set; }
public sbyte Amount { get; set; }
public DateTime Date { get; set; }
public Awardtype Awardtype { get; set; }
public Chat Chat { get; set; }
public User From { get; set; }
public User To { get; set; }
}
}