mirror of
https://github.com/yawaflua/PL_JusticeBot.git
synced 2025-12-08 19:39:27 +02:00
14 lines
337 B
C#
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; }
|
|
|
|
}
|
|
} |