UpdateAuthDto.cs 570 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace BLL.Dto.AuthDto
  7. {
  8. public class UpdateAuthDto : BaseDto
  9. {
  10. public string Role { get; set; }
  11. public bool ControlModule { get; set; }
  12. public bool MonitorModule { get; set; }
  13. public bool RecipeModule { get; set; }
  14. public bool LogModule { get; set; }
  15. public bool ReportModule { get; set; }
  16. public bool ChartModule { get; set; }
  17. public bool ParamModule { get; set; }
  18. }
  19. }