namespace MediaBrowser.Controller.Providers { /// /// Provider refresh priority. /// public enum RefreshPriority { /// /// High priority. /// High = 0, /// /// Normal priority. /// Normal = 1, /// /// Low priority. /// Low = 2 } }