24 lines
858 B
C#
Raw Permalink Normal View History

2024-08-21 16:50:14 +08:00
using System;
using System.Collections.Generic;
namespace CodeFirstExistingDatabaseSample.ReportServer.Models
{
public partial class SnapshotDatum
{
public Guid SnapshotDataId { get; set; }
public DateTime CreatedDate { get; set; }
public int? ParamsHash { get; set; }
public string? QueryParams { get; set; }
public string? EffectiveParams { get; set; }
public string? Description { get; set; }
public bool? DependsOnUser { get; set; }
public int PermanentRefcount { get; set; }
public int TransientRefcount { get; set; }
public DateTime ExpirationDate { get; set; }
public int? PageCount { get; set; }
public bool? HasDocMap { get; set; }
public short? PaginationMode { get; set; }
public int? ProcessingFlags { get; set; }
}
}