mirror of
https://github.com/yawaflua/PL_JusticeBot.git
synced 2025-12-10 04:19:31 +02:00
add discord bot
change net6.0 net7.0
This commit is contained in:
14
Database/Tables/Autobranches.cs
Normal file
14
Database/Tables/Autobranches.cs
Normal file
@@ -0,0 +1,14 @@
|
||||
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; }
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user