using System; using System.Collections.Generic; namespace Jellyfin.Data.Entities; /// /// Mapping table for the ItemValue BaseItem relation. /// public class ItemValueMap { /// /// Gets or Sets the ItemId. /// public required Guid ItemId { get; set; } /// /// Gets or Sets the ItemValueId. /// public required Guid ItemValueId { get; set; } /// /// Gets or Sets the referenced . /// public required BaseItemEntity Item { get; set; } /// /// Gets or Sets the referenced . /// public required ItemValue ItemValue { get; set; } }