mirror of
				https://github.com/Kareadita/Kavita.git
				synced 2025-11-04 03:27:05 -05: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; }
 | 
						|
}
 |