| 1234567891011121314151617181920 |
- using WeApp.TrainingPortrait.Dto;
- namespace WeApp.Views.Shared.Camp
- {
- public class ReportModel
- {
- public ReportModel()
- {
- }
- public ReportModel(GroupReportDto group, bool isSystem=true)
- {
- Group = group;
- IsSystem = isSystem;
- }
- public GroupReportDto Group { get; set; }
- public bool IsSystem { get; set; }
- }
- }
|