mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-06-23 15:30:56 -04:00
25 lines
494 B
C#
25 lines
494 B
C#
#pragma warning disable CS1591
|
|
|
|
using MediaBrowser.Model.Plugins;
|
|
|
|
namespace MediaBrowser.Providers.Plugins.StudioImages
|
|
{
|
|
public class PluginConfiguration : BasePluginConfiguration
|
|
{
|
|
private string _repository = Plugin.DefaultServer;
|
|
|
|
public string RepositoryUrl
|
|
{
|
|
get
|
|
{
|
|
return _repository;
|
|
}
|
|
|
|
set
|
|
{
|
|
_repository = value.TrimEnd('/');
|
|
}
|
|
}
|
|
}
|
|
}
|