Database
This commit is contained in:
17
KTUSAPS.Data/Model/Admin.cs
Normal file
17
KTUSAPS.Data/Model/Admin.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace KTUSAPS.Data.Model
|
||||
{
|
||||
public class Admin
|
||||
{
|
||||
[Key, MaxLength(64)]
|
||||
public string UserId { get; set; }
|
||||
[MaxLength(256)]
|
||||
public string Comment { get; set; }
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user