Added dynamic whitelist

This commit is contained in:
hydrant
2018-12-02 16:54:29 +01:00
parent a9d6cef952
commit 4c6fcf8a11
4 changed files with 89 additions and 22 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
namespace reallife_gamemode.Server.Entities
{
public class Whitelist
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int Id { get; set; }
public string SocialClubName { get; set; }
}
}