namespace MediaBrowser.Controller.Providers
{
    /// 
    /// Enum ProviderRefreshStatus
    /// 
    public enum ProviderRefreshStatus
    {
        /// 
        /// The success
        /// 
        Success = 0,
        /// 
        /// The completed with errors
        /// 
        CompletedWithErrors = 1,
         /// 
        /// The failure
        /// 
        Failure = 2
   }
}