jellyfin/MediaBrowser.Controller/Entities/IHasDisplayOrder.cs

19 lines
394 B
C#
Raw Normal View History

#nullable disable
using Jellyfin.Data.Enums;
2018-12-27 18:27:57 -05:00
namespace MediaBrowser.Controller.Entities
{
/// <summary>
/// Interface IHasDisplayOrder.
2018-12-27 18:27:57 -05:00
/// </summary>
public interface IHasDisplayOrder
{
/// <summary>
/// Gets or sets the display order.
/// </summary>
/// <value>The display order.</value>
string DisplayOrder { get; set; }
}
}