mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-04 06:48:35 +01:00
fixed remote control flyout
This commit is contained in:
22
MediaBrowser.Controller/Providers/ProviderRefreshStatus.cs
Normal file
22
MediaBrowser.Controller/Providers/ProviderRefreshStatus.cs
Normal file
@@ -0,0 +1,22 @@
|
||||
|
||||
namespace MediaBrowser.Controller.Providers
|
||||
{
|
||||
/// <summary>
|
||||
/// Enum ProviderRefreshStatus
|
||||
/// </summary>
|
||||
public enum ProviderRefreshStatus
|
||||
{
|
||||
/// <summary>
|
||||
/// The success
|
||||
/// </summary>
|
||||
Success = 0,
|
||||
/// <summary>
|
||||
/// The completed with errors
|
||||
/// </summary>
|
||||
CompletedWithErrors = 1,
|
||||
/// <summary>
|
||||
/// The failure
|
||||
/// </summary>
|
||||
Failure = 2
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user