18 lines
358 B
C#
Raw Permalink Normal View History

2024-10-13 17:04:47 +08:00
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LMS.Repository.Role
{
public class RoleModel
{
[Required]
public string Name { get; set; }
public string Remark { get; set; } = string.Empty;
}
}