16 lines
419 B
C#
16 lines
419 B
C#
![]() |
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!;
|
|||
|
}
|
|||
|
}
|