Files
pgsql-jellyfin/MediaBrowser.Controller/Entities/IHasDisplayOrder.cs
T

23 lines
540 B
C#

// <copyright file="IHasDisplayOrder.cs" company="PlaceholderCompany">
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
#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; }
}
}