16 lines
419 B
C#
Raw Normal View History

2024-08-21 16:50:14 +08:00
using System;
using System.Collections.Generic;
namespace CodeFirstExistingDatabaseSample.ReportServer.Models
{
public partial class CachePolicy
{
public Guid CachePolicyId { get; set; }
public Guid ReportId { get; set; }
public int ExpirationFlags { get; set; }
public int? CacheExpiration { get; set; }
public virtual Catalog Report { get; set; } = null!;
}
}