18 lines
341 B
C#
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; }
|
|
}
|