mirror of
https://dev.azure.com/tstanciu94/Packages/_git/Netmash
synced 2025-06-21 19:22:38 +03:00
14 lines
340 B
C#
14 lines
340 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Netmash.Infrastructure.DatabaseMigration.Entities
|
|
{
|
|
internal class MigratedVersion
|
|
{
|
|
public int Id { get; set; }
|
|
public int SignatureId { get; set; }
|
|
public string Version { get; set; }
|
|
|
|
public ICollection<MigratedScript> Scripts { get; set; }
|
|
}
|
|
}
|