20230201_145_upperpc/InSituLaboratory.Models/RoleModel.cs

21 lines
468 B
C#
Raw Normal View History

2024-03-11 05:12:02 +00:00
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; }
}
}