ReportModel.cs 409 B

1234567891011121314151617181920
  1. using WeApp.TrainingPortrait.Dto;
  2. namespace WeApp.Views.Shared.Camp
  3. {
  4. public class ReportModel
  5. {
  6. public ReportModel()
  7. {
  8. }
  9. public ReportModel(GroupReportDto group, bool isSystem=true)
  10. {
  11. Group = group;
  12. IsSystem = isSystem;
  13. }
  14. public GroupReportDto Group { get; set; }
  15. public bool IsSystem { get; set; }
  16. }
  17. }