CachePolicy.cs 419 B

123456789101112131415
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ReportServer.Models
  4. {
  5. public partial class CachePolicy
  6. {
  7. public Guid CachePolicyId { get; set; }
  8. public Guid ReportId { get; set; }
  9. public int ExpirationFlags { get; set; }
  10. public int? CacheExpiration { get; set; }
  11. public virtual Catalog Report { get; set; } = null!;
  12. }
  13. }