mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-20 09:04:42 +01:00
Visual Studio Reformat: OpenSubtitlesHandler
This commit is contained in:
@@ -42,19 +42,22 @@ namespace OpenSubtitlesHandler
|
||||
private string _query;
|
||||
private string _episode;
|
||||
|
||||
public string Episode {
|
||||
public string Episode
|
||||
{
|
||||
get { return _episode; }
|
||||
set { _episode = value; }
|
||||
}
|
||||
|
||||
public string Season {
|
||||
public string Season
|
||||
{
|
||||
get { return _season; }
|
||||
set { _season = value; }
|
||||
}
|
||||
|
||||
private string _season;
|
||||
|
||||
public string Query {
|
||||
public string Query
|
||||
{
|
||||
get { return _query; }
|
||||
set { _query = value; }
|
||||
}
|
||||
@@ -74,6 +77,6 @@ namespace OpenSubtitlesHandler
|
||||
/// <summary>
|
||||
/// IMDb ID of movie this video is part of, belongs to.
|
||||
/// </summary>
|
||||
public string IMDbID { get { return imdbid; } set { imdbid = value; } }
|
||||
public string IMDbID { get { return imdbid; } set { imdbid = value; } }
|
||||
}
|
||||
}
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
|
||||
namespace OpenSubtitlesHandler
|
||||
{
|
||||
public class TryUploadSubtitlesParameters
|
||||
public class TryUploadSubtitlesParameters
|
||||
{
|
||||
private string _subhash = "";
|
||||
private string _subfilename = "";
|
||||
|
||||
Reference in New Issue
Block a user