karmabot/JetKarmaBot/Models/Chat.cs
2019-01-06 18:29:00 +03:00

19 lines
361 B
C#

using System;
using System.Collections.Generic;
namespace JetKarmaBot.Models
{
public partial class Chat
{
public Chat()
{
Awards = new HashSet<Award>();
}
public long ChatId { get; set; }
public string Locale { get; set; }
public virtual ICollection<Award> Awards { get; set; }
}
}