10 lines
231 B
C#
10 lines
231 B
C#
|
namespace NDB.Infrastructure.DatabaseMigration.Entities
|
|||
|
{
|
|||
|
internal class MigratedScript
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
public int VersionId { get; set; }
|
|||
|
public string Script { get; set; }
|
|||
|
}
|
|||
|
}
|