You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
469 B
23 lines
469 B
|
|
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
|
|
}
|
|
}
|