initial commit
[CPE_learningsite] / CPE / CPE.App / CPE.App.Web / Models / AdobeModels / AdobeSessionViewModel.cs
1 using System.Collections.Generic;
2
3 namespace CPE.App.Web.Models
4 {
5     public class AdobeSessionViewModel
6     {
7         public MeetingSession MeetingSession { get; set; }
8         public List<ParticipantSessionsDataResult> ParticipantSessionsDataResult { get; set; }
9         public List<GetSessionReportResult> GetSessionReportResult { get; set; }
10         public List<WebcastPurchaseDataResult> WebcastPurchaseDataResult { get; set; }
11         public string Name {
12             get { return "Engagement Reporting"; }
13         }
14     }
15 }