aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Providers/IHasOrder.cs
blob: 77b0407a20f12ac9c03dd4d917377ab26f935c0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
namespace MediaBrowser.Controller.Providers
{
    /// <summary>
    /// Interface IHasOrder.
    /// </summary>
    public interface IHasOrder
    {
        /// <summary>
        /// Gets the order.
        /// </summary>
        /// <value>The order.</value>
        int Order { get; }
    }
}