14 lines
350 B
C#
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; }
|
|||
|
}
|
|||
|
}
|