using System.Collections.Generic;
namespace Jellyfin.Database.Implementations.DbConfiguration;
///
/// The custom value option for custom database providers.
///
public class CustomDatabaseOption
{
///
/// Gets or sets the key of the value.
///
public required string Key { get; set; }
///
/// Gets or sets the value.
///
public required string Value { get; set; }
}