| 12345678910111213141516171819202122 |
- namespace WeApp.Views.Exercise
- {
- public class ScreenModel
- {
- public ScreenModel()
- {
- }
- public ScreenModel(int type,string groupNo, string campNo, bool withScript)
- {
- Type = type;
- GroupNo = groupNo;
- CampNo = campNo;
- WithScript = withScript;
- }
- public int Type { get; set; }
- public string GroupNo { get; set; }
- public string CampNo { get; set; }
- public bool WithScript { get; set; }
- }
- }
|