ChouBox/ChouBox.Model/Entities/Migrations.cs
2025-04-23 19:20:23 +08:00

18 lines
341 B
C#

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; }
}