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.
30 lines
704 B
30 lines
704 B
using System;
|
|
|
|
namespace Jellyfin.Data.Entities;
|
|
|
|
/// <summary>
|
|
/// Represents the relational informations for an <see cref="BaseItemEntity"/>.
|
|
/// </summary>
|
|
public class AncestorId
|
|
{
|
|
/// <summary>
|
|
/// Gets or Sets the AncestorId.
|
|
/// </summary>
|
|
public required Guid ParentItemId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets the related BaseItem.
|
|
/// </summary>
|
|
public required Guid ItemId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets the ParentItem.
|
|
/// </summary>
|
|
public required BaseItemEntity ParentItem { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets the Child item.
|
|
/// </summary>
|
|
public required BaseItemEntity Item { get; set; }
|
|
}
|