Software_Engineering_Field_.../SiteManagementSystem(Softwa.../Model/UserModel.cs

17 lines
454 B
C#
Raw Normal View History

2024-10-30 17:52:22 +08:00
using SiteManagementSystem_SoftwareEngineering_.Entity;
using System.ComponentModel.DataAnnotations;
namespace SiteManagementSystem_SoftwareEngineering_.Model
{
public class UserModel
{
public string RoleName { get; set; } = null!;
[Required]
[StringLength(50)]
public string Name { get; set; } = null!;
[Required]
[StringLength(50)]
public string Secret { get; set; } = null!;
}
}