16 lines
597 B
C#
16 lines
597 B
C#
// <copyright file="MigrationRecord.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace Jellyfin.Server.Implementations.Migrations;
|
|
|
|
/// <summary>Represents one row of the EF migrations history table.</summary>
|
|
public sealed class MigrationRecord
|
|
{
|
|
/// <summary>Gets or sets the migration identifier.</summary>
|
|
public string MigrationId { get; set; } = string.Empty;
|
|
|
|
/// <summary>Gets or sets the product version that applied this migration.</summary>
|
|
public string ProductVersion { get; set; } = string.Empty;
|
|
}
|