using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace CPE.App.Web.Models { public class ProjectSettingModel { public string ProjectCode { get; set; } public string AllowCompletedPages { get; set; } public string AllowFuturePages { get; set; } public string GlobalPassRate { get; set; } public string AllowRetakes { get; set; } public string GlobalCompletionRate { get; set; } public string NoPartialScores { get; set; } public string TrackingMode { get; set; } public string Scorm_1_2PassAction { get; set; } public string XapiLrsEndpointUrl { get; set; } public string XapiLrsEndpointUsername { get; set; } public string XapiLrsEndpointPassword { get; set; } public string LearnerAccess { get; set; } } }