16 lines
426 B
C#
16 lines
426 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace Netmash.Infrastructure.DatabaseMigration.Entities
|
|||
|
{
|
|||
|
internal class MigrationSignature
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public DateTime MigrationDate { get; set; }
|
|||
|
public string MachineName { get; set; }
|
|||
|
public string LastVersion { get; set; }
|
|||
|
|
|||
|
public ICollection<MigratedVersion> MigratedVersions { get; set; }
|
|||
|
}
|
|||
|
}
|