14 lines
336 B
C#
14 lines
336 B
C#
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace NDB.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; }
|
|||
|
}
|
|||
|
}
|