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; } } }