You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jellyfin/MediaBrowser.Model/Session/BrowseRequest.cs

30 lines
735 B

using Jellyfin.Data.Enums;
#nullable disable
namespace MediaBrowser.Model.Session
{
/// <summary>
/// Class BrowseRequest.
/// </summary>
public class BrowseRequest
{
/// <summary>
/// Gets or sets the item type.
/// </summary>
/// <value>The type of the item.</value>
public BaseItemKind ItemType { get; set; }
/// <summary>
/// Gets or sets the item id.
/// </summary>
/// <value>The item id.</value>
public string ItemId { get; set; }
/// <summary>
/// Gets or sets the name of the item.
/// </summary>
/// <value>The name of the item.</value>
public string ItemName { get; set; }
}
}