Files
PL_JusticeBot/Database/Tables/Autobranches.cs
Дмитрий Шиманский 9a8a4cad5d add discord bot
change net6.0 net7.0
2023-10-26 11:35:42 +03:00

14 lines
337 B
C#

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace DiscordApp.Database.Tables
{
[Table("Autobranches", Schema = "public")]
public class Autobranches
{
[Key]
public ulong ChannelId { get; set; }
public string BranchName { get; set; }
}
}