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; } } }