blob: af2ede7010e6a298ee79386db275275c25b2bae1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using System;
namespace Jellyfin.Server.Implementations.DatabaseConfiguration;
/// <summary>
/// Options to configure jellyfins managed database.
/// </summary>
public class DatabaseConfigurationOptions
{
/// <summary>
/// Gets or Sets the type of database jellyfin should use.
/// </summary>
public required string DatabaseType { get; set; }
}
|