using System; using System.Collections.Generic; namespace NDB.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 MigratedVersions { get; set; } } }