17 lines
352 B
C#
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>();
|
|
}
|
|
}
|