server specific feature

the funny nickname command server list is no-longer hardcoded
This commit is contained in:
Lan
2022-02-19 16:03:02 +02:00
parent e92be40d9c
commit bb9a95a658
8 changed files with 445 additions and 8 deletions

View File

@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
namespace Kehyeedra3.Services.Models
{
class Guild
{
[Key]
public ulong Id { get; set; } = 0;
public bool Changenick { get; set; } = false;
}
}