mirror of
https://github.com/Jetsparrow/karmabot.git
synced 2026-01-21 00:56:09 +03:00
16 lines
327 B
C#
16 lines
327 B
C#
namespace JetKarmaBot.Models;
|
|
|
|
public partial class Chat
|
|
{
|
|
public Chat()
|
|
{
|
|
Awards = new HashSet<Award>();
|
|
}
|
|
|
|
public long ChatId { get; set; }
|
|
public string Locale { get; set; } = "ru-RU";
|
|
public bool IsAdministrator { get; set; }
|
|
|
|
public virtual ICollection<Award> Awards { get; set; }
|
|
}
|