server specific feature
the funny nickname command server list is no-longer hardcoded
This commit is contained in:
17
Kehyeedra3/Services/Models/Guild.cs
Normal file
17
Kehyeedra3/Services/Models/Guild.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user