17 lines
483 B
C#
17 lines
483 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace IntegrationTests.Models
|
|
{
|
|
public partial class History
|
|
{
|
|
public System.Guid Id { get; set; }
|
|
public Nullable<System.Guid> EntityId { get; set; }
|
|
public string XML { get; set; }
|
|
public System.DateTime TimeStamp { get; set; }
|
|
public System.Guid ModifiedBy { get; set; }
|
|
public string EntityType { get; set; }
|
|
public string ModificationType { get; set; }
|
|
}
|
|
}
|