mirror of
https://github.com/Jetsparrow/karmabot.git
synced 2026-01-21 09:06:09 +03:00
19 lines
351 B
C#
19 lines
351 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace JetKarmaBot.Models
|
|
{
|
|
public partial class Chat
|
|
{
|
|
public Chat()
|
|
{
|
|
Award = new HashSet<Award>();
|
|
}
|
|
|
|
public long Chatid { get; set; }
|
|
public string Locale { get; set; }
|
|
|
|
public ICollection<Award> Award { get; set; }
|
|
}
|
|
}
|