DatabaseConfigurationOptions.cs 363 B

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