This repository has been archived on 2025-08-13. You can view files and clone it, but cannot push or open issues or pull requests.
Files
KTUSA-PS/KTUSAPS.Data/Model/Admin.cs
Nadegamra b447434a47 Database
2021-09-09 20:32:56 +03:00

18 lines
374 B
C#

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