//
// Copyright (c) PlaceholderCompany. All rights reserved.
//
namespace MediaBrowser.Controller.Entities
{
#nullable disable
using Jellyfin.Data.Enums;
///
/// Interface IHasDisplayOrder.
///
public interface IHasDisplayOrder
{
///
/// Gets or sets the display order.
///
/// The display order.
string DisplayOrder { get; set; }
}
}