mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-17 06:23:03 +03:00
15 lines
346 B
C#
15 lines
346 B
C#
|
|
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; }
|
||
|
|
}
|
||
|
|
}
|