2024-08-21 16:50:14 +08:00

18 lines
574 B
C#

using System;
using System.Collections.Generic;
namespace CodeFirstExistingDatabaseSample.ReportServerTempDB.Models
{
public partial class ExecutionCache
{
public Guid ExecutionCacheId { get; set; }
public Guid ReportId { get; set; }
public int ExpirationFlags { get; set; }
public DateTime? AbsoluteExpiration { get; set; }
public int? RelativeExpiration { get; set; }
public Guid SnapshotDataId { get; set; }
public DateTime LastUsedTime { get; set; }
public int ParamsHash { get; set; }
}
}