-
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
28 changed files
with
1,130 additions
and
1,120 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
41 changes: 20 additions & 21 deletions
41
Jellyfin.Plugin.OpenSubtitles/Configuration/PluginConfiguration.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,29 @@ | ||
using MediaBrowser.Model.Plugins; | ||
|
||
namespace Jellyfin.Plugin.OpenSubtitles.Configuration | ||
namespace Jellyfin.Plugin.OpenSubtitles.Configuration; | ||
|
||
/// <summary> | ||
/// The plugin configuration. | ||
/// </summary> | ||
public class PluginConfiguration : BasePluginConfiguration | ||
{ | ||
/// <summary> | ||
/// The plugin configuration. | ||
/// Gets or sets the username. | ||
/// </summary> | ||
public class PluginConfiguration : BasePluginConfiguration | ||
{ | ||
/// <summary> | ||
/// Gets or sets the username. | ||
/// </summary> | ||
public string Username { get; set; } = string.Empty; | ||
public string Username { get; set; } = string.Empty; | ||
|
||
/// <summary> | ||
/// Gets or sets the password. | ||
/// </summary> | ||
public string Password { get; set; } = string.Empty; | ||
/// <summary> | ||
/// Gets or sets the password. | ||
/// </summary> | ||
public string Password { get; set; } = string.Empty; | ||
|
||
/// <summary> | ||
/// Gets or sets the custom API Key. | ||
/// </summary> | ||
public string CustomApiKey { get; set; } = string.Empty; | ||
/// <summary> | ||
/// Gets or sets the custom API Key. | ||
/// </summary> | ||
public string CustomApiKey { get; set; } = string.Empty; | ||
|
||
/// <summary> | ||
/// Gets or sets a value indicating whether the credentials are invalid. | ||
/// </summary> | ||
public bool CredentialsInvalid { get; set; } = false; | ||
} | ||
/// <summary> | ||
/// Gets or sets a value indicating whether the credentials are invalid. | ||
/// </summary> | ||
public bool CredentialsInvalid { get; set; } = false; | ||
} |
Oops, something went wrong.