blob: fcb8f41b342daa335a3ec2942bb128e56e39e218 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
using System.Collections.Generic;
namespace Jellyfin.Database.Implementations.DbConfiguration;
/// <summary>
/// The custom value option for custom database providers.
/// </summary>
public class CustomDatabaseOption
{
/// <summary>
/// Gets or sets the key of the value.
/// </summary>
public required string Key { get; set; }
/// <summary>
/// Gets or sets the value.
/// </summary>
public required string Value { get; set; }
}
|