karmabot/JetKarmaBot/Models/Chat.cs
Nikolay Kochulin 45b94e7561 Add field IsAdministrator
Signed-off-by: Nikolay Kochulin <porez0xfeedface@gmail.com>
2019-05-16 19:32:32 +03:00

20 lines
411 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 bool IsAdministrator { get; set; }
public virtual ICollection<Award> Awards { get; set; }
}
}