using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BLL.Dto.AuthDto { public class QueryAuthResultDto : BaseDto { public bool ControlModule { get; set; } public bool MonitorModule { get; set; } public bool RecipeModule { get; set; } public bool LogModule { get; set; } public bool ReportModule { get; set; } public bool ChartModule { get; set; } public bool ParamModule { get; set; } } }