mirror of
https://github.com/Kareadita/Kavita.git
synced 2025-06-07 15:44:16 -04:00
15 lines
397 B
C#
15 lines
397 B
C#
using System;
|
|
|
|
namespace API.Entities.History;
|
|
|
|
/// <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; }
|
|
}
|