20230201_145_upperpc/InSituLaboratory.Models/RoleModel.cs
2024-03-11 13:12:02 +08:00

21 lines
468 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace InSituLaboratory.Models
{
public class RoleModel
{
public bool IsSelected { get; set; }
public int RoleId { get; set; }
public string RoleName { get; set; }
public string RoleDesc { get; set; }
public List<int> MenuIds { get; set; }
public List<int> UserIds { get; set; }
}
}