mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-23 01:05:19 +03:00
15 lines
363 B
C#
15 lines
363 B
C#
|
|
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; }
|
||
|
|
}
|