17 lines
454 B
C#
17 lines
454 B
C#
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!;
|
|
}
|
|
}
|