UserSession.cs 596 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. namespace EntranseTesting.Models;
  4. public partial class UserSession
  5. {
  6. public int Id { get; set; }
  7. public string UserGroup { get; set; } = null!;
  8. public string UserName { get; set; } = null!;
  9. public DateTime Date { get; set; }
  10. public TimeSpan Time { get; set; }
  11. public int CountHint { get; set; }
  12. public int? IdAppSettings { get; set; }
  13. public virtual AppSetting? IdAppSettingsNavigation { get; set; }
  14. public virtual ICollection<UserResponse> UserResponses { get; set; } = new List<UserResponse>();
  15. }