SessionDatum.cs 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ReportServerTempDB.Models
  4. {
  5. public partial class SessionDatum
  6. {
  7. public string SessionId { get; set; } = null!;
  8. public Guid? CompiledDefinition { get; set; }
  9. public Guid? SnapshotDataId { get; set; }
  10. public bool? IsPermanentSnapshot { get; set; }
  11. public string? ReportPath { get; set; }
  12. public int Timeout { get; set; }
  13. public int? AutoRefreshSeconds { get; set; }
  14. public DateTime Expiration { get; set; }
  15. public byte[]? ShowHideInfo { get; set; }
  16. public byte[]? DataSourceInfo { get; set; }
  17. public Guid OwnerId { get; set; }
  18. public string? EffectiveParams { get; set; }
  19. public DateTime CreationTime { get; set; }
  20. public bool? HasInteractivity { get; set; }
  21. public DateTime? SnapshotExpirationDate { get; set; }
  22. public DateTime? HistoryDate { get; set; }
  23. public double? PageHeight { get; set; }
  24. public double? PageWidth { get; set; }
  25. public double? TopMargin { get; set; }
  26. public double? BottomMargin { get; set; }
  27. public double? LeftMargin { get; set; }
  28. public double? RightMargin { get; set; }
  29. public bool? AwaitingFirstExecution { get; set; }
  30. public string? EditSessionId { get; set; }
  31. public byte[]? DataSetInfo { get; set; }
  32. public string? SitePath { get; set; }
  33. public int SiteZone { get; set; }
  34. public string? ReportDefinitionPath { get; set; }
  35. }
  36. }