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