using System;
namespace Jellyfin.Data.Entities;
///
/// Represents the relational informations for an .
///
public class AncestorId
{
///
/// Gets or Sets the AncestorId that may or may not be an database managed Item or an materialised local item.
///
public required Guid ParentItemId { get; set; }
///
/// Gets or Sets the related that may or may not be an database managed Item or an materialised local item.
///
public required Guid ItemId { get; set; }
}