using System; using System.Collections.Generic; namespace ChouBox.Model.Entities; public partial class Migrations { public long Version { get; set; } public string? MigrationName { get; set; } public DateTime? StartTime { get; set; } public DateTime? EndTime { get; set; } public bool Breakpoint { get; set; } }