ScreenModel.cs 525 B

12345678910111213141516171819202122
  1. namespace WeApp.Views.Exercise
  2. {
  3. public class ScreenModel
  4. {
  5. public ScreenModel()
  6. {
  7. }
  8. public ScreenModel(int type,string groupNo, string campNo, bool withScript)
  9. {
  10. Type = type;
  11. GroupNo = groupNo;
  12. CampNo = campNo;
  13. WithScript = withScript;
  14. }
  15. public int Type { get; set; }
  16. public string GroupNo { get; set; }
  17. public string CampNo { get; set; }
  18. public bool WithScript { get; set; }
  19. }
  20. }