2022-02-16 19:09:06 +02:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2023-01-12 01:01:36 +02:00
|
|
|
|
namespace Netmash.Infrastructure.DatabaseMigration.Entities
|
2022-02-16 19:09:06 +02:00
|
|
|
|
{
|
|
|
|
|
internal class MigratedVersion
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
public int SignatureId { get; set; }
|
|
|
|
|
public string Version { get; set; }
|
|
|
|
|
|
|
|
|
|
public ICollection<MigratedScript> Scripts { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|