aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/IHasDisplayOrder.cs
blob: 5e1ae21798c4831b09f59ddceec33cbf10795f87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace MediaBrowser.Controller.Entities
{
    /// <summary>
    /// Interface IHasDisplayOrder
    /// </summary>
    public interface IHasDisplayOrder
    {
        /// <summary>
        /// Gets or sets the display order.
        /// </summary>
        /// <value>The display order.</value>
        string DisplayOrder { get; set; }
    }
}