namespace WeApp.Views.ExerciseV2 { 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; } } }