Grp_ScheduleCombinView.cs 478 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace OASystem.Domain.ViewModels.Groups
  7. {
  8. public class Grp_ScheduleCombinView
  9. {
  10. public Grp_ScheduleView Primary { get; set; }
  11. //public List<Grp_ScheduleDetailView> ChildList { get; set; }
  12. public List<Grp_SchedulePersonView> PersonList { get; set; }
  13. public List<Grp_ScheduleRootView> RootList { get; set; }
  14. }
  15. }