mirror of
https://github.com/Jetsparrow/karmabot.git
synced 2026-01-21 09:06:09 +03:00
16 lines
396 B
C#
16 lines
396 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace JetKarmaBot.Models
|
|
{
|
|
public partial class Chat
|
|
{
|
|
public long ChatId { get; set; }
|
|
public string Locale { get; set; }
|
|
public bool IsAdministrator { get; set; }
|
|
|
|
public virtual ICollection<Award> Awards { get; set; }
|
|
public virtual ICollection<AwardType> AwardTypes { get; set; }
|
|
}
|
|
}
|