initial commit
[CPE_learningsite] / CPE / CPE.App / CPE.App.Web / Models / ElucidatModels / LearnerSessionModel.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Web;
5
6 namespace CPE.App.Web.Models.ElucidatModels
7 {
8     public class LearnerSessionModel
9     {
10         //placeholder not sure if we'll need a model to hold info or just use the db-mapped model
11         public string Url { get; set; }
12         public string Email { get; set; }
13         public string FirstName { get; set; }
14         public string LastName { get; set; }
15         public string Ticket { get; set; } //this will be used to authenticate user access to course
16     }
17 }