Documentation for the Unity C# Library
Loading...
Searching...
No Matches
ApexSessionState.cs
Go to the documentation of this file.
1using System;
2
3namespace PixoVR.Event
4{
5 public class ApexSessionState
6 {
7 public bool IsLoggedIn { get; set; }
8
9 public string UserName { get; set; }
10
11 public string Email { get; set; }
12
13 public int MinimumPassingScore { get; set; }
14
15 public DateTime StartTime { get; set; }
16 }
17}