initial commit
[CPE_learningsite] / CPE / CPE.App / CPE.App.Web / Models / ElucidatModels / ReleaseSettingModel.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Web;
5
6 namespace CPE.App.Web.Models
7 {
8     public class ReleaseSettingModel
9     {
10         public string ProjectCode { get; set; }
11         public string ReleaseMode { get; set; }
12         public string ReleaseCode { get; set; }
13         public string Description { get; set; }
14         public string XapiLrsEndpointUrl { get; set; }
15         public string XapiLrsEndpointUsername { get; set; }
16         public string XapiLrsEndpointPassword { get; set; }
17         public string LearnerAccess { get; set; }
18     }
19 }