SnapshotDatum.cs 961 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ReportServerTempDB.Models
  4. {
  5. public partial class SnapshotDatum
  6. {
  7. public Guid SnapshotDataId { get; set; }
  8. public DateTime CreatedDate { get; set; }
  9. public int? ParamsHash { get; set; }
  10. public string? QueryParams { get; set; }
  11. public string? EffectiveParams { get; set; }
  12. public string? Description { get; set; }
  13. public bool? DependsOnUser { get; set; }
  14. public int PermanentRefcount { get; set; }
  15. public int TransientRefcount { get; set; }
  16. public DateTime ExpirationDate { get; set; }
  17. public int? PageCount { get; set; }
  18. public bool? HasDocMap { get; set; }
  19. public string Machine { get; set; } = null!;
  20. public short? PaginationMode { get; set; }
  21. public int? ProcessingFlags { get; set; }
  22. public bool? IsCached { get; set; }
  23. }
  24. }