aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Providers/Manager/RefreshResult.cs
blob: 72fc61e424eb8aab96f0ac00d09dcc60fd29b870 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#pragma warning disable CS1591

using MediaBrowser.Controller.Library;

namespace MediaBrowser.Providers.Manager
{
    public class RefreshResult
    {
        public ItemUpdateType UpdateType { get; set; }

        public string ErrorMessage { get; set; }

        public int Failures { get; set; }
    }
}