using System; using System.Collections.Generic; using System.Linq; using System.Web; namespace CPE.App.Web.Models.ElucidatModels { public class LearnerSessionModel { //placeholder not sure if we'll need a model to hold info or just use the db-mapped model public string Url { get; set; } public string Email { get; set; } public string FirstName { get; set; } public string LastName { get; set; } public string Ticket { get; set; } //this will be used to authenticate user access to course } }