using System; using System.Collections.Generic; namespace DbMigrate { public class Migration { public string MigrationName { get; set; } public string Sql { get; set; } public bool Executed { get; set; } = false; public List Errors { get; set; } = new List(); public Migration(string name, string sql) { MigrationName = name; Sql = sql; } } }