//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
namespace Jellyfin.Server.Implementations.Migrations;
/// Represents one row of the EF migrations history table.
public sealed class MigrationRecord
{
/// Gets or sets the migration identifier.
public string MigrationId { get; set; } = string.Empty;
/// Gets or sets the product version that applied this migration.
public string ProductVersion { get; set; } = string.Empty;
}