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

14 lines
350 B
C#

using System;
using System.Collections.Generic;
namespace CodeFirstExistingDatabaseSample.ReportServer.Models
{
public partial class History
{
public Guid HistoryId { get; set; }
public Guid ReportId { get; set; }
public Guid SnapshotDataId { get; set; }
public DateTime SnapshotDate { get; set; }
}
}