2025-12-22 16:20:26 +08:00

17 lines
352 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using XPrintServer.DataModel.Models;
namespace XPrintServer.Business.Dto
{
public class RoleInfo
{
public Role Role { get; set; } = null!;
public List<Guid> MenuIds { get; set; } = new List<Guid>();
}
}