mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-08 15:23:23 +01:00
20 lines
587 B
C#
20 lines
587 B
C#
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 that may or may not be an database managed Item or an materialised local item.
|
|
/// </summary>
|
|
public required Guid ParentItemId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets the related that may or may not be an database managed Item or an materialised local item.
|
|
/// </summary>
|
|
public required Guid ItemId { get; set; }
|
|
}
|