blob: b481a106fd4fcad9ea1a018bec353293d274cfe3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
namespace Jellyfin.Database.Implementations.DbConfiguration;
/// <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; }
}
|