mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-05-24 00:52:23 -04:00
15 lines
389 B
C#
15 lines
389 B
C#
using System;
|
|
|
|
namespace API.Entities;
|
|
|
|
/// <summary>
|
|
/// This will track manual migrations so that I can use simple selects to check if a Manual Migration is needed
|
|
/// </summary>
|
|
public class ManualMigrationHistory
|
|
{
|
|
public int Id { get; set; }
|
|
public string ProductVersion { get; set; }
|
|
public required string Name { get; set; }
|
|
public DateTime RanAt { get; set; }
|
|
}
|