ExecutionCache.cs 574 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ReportServerTempDB.Models
  4. {
  5. public partial class ExecutionCache
  6. {
  7. public Guid ExecutionCacheId { get; set; }
  8. public Guid ReportId { get; set; }
  9. public int ExpirationFlags { get; set; }
  10. public DateTime? AbsoluteExpiration { get; set; }
  11. public int? RelativeExpiration { get; set; }
  12. public Guid SnapshotDataId { get; set; }
  13. public DateTime LastUsedTime { get; set; }
  14. public int ParamsHash { get; set; }
  15. }
  16. }