aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Providers/ProviderRefreshStatus.cs
blob: 6523dc4173d79dbe110198bde11989dd4cd9d725 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
   }
}