SnapshotDatum.cs 858 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ReportServer.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 short? PaginationMode { get; set; }
  20. public int? ProcessingFlags { get; set; }
  21. }
  22. }