aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/IHasDisplayOrder.cs
blob: 7a73f3eaf9974ca17ffafd1f5548bf2bb9c6b02d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#nullable disable

using Jellyfin.Data.Enums;

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; }
    }
}