#nullable disable
using Jellyfin.Data.Enums;
namespace MediaBrowser.Controller.Entities
{
    /// 
    /// Interface IHasDisplayOrder.
    /// 
    public interface IHasDisplayOrder
    {
        /// 
        /// Gets or sets the display order.
        /// 
        /// The display order.
        string DisplayOrder { get; set; }
    }
}