mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-08-05 21:57:04 +02:00
31 lines
752 B
C#
31 lines
752 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Jellyfin.Data.Entities;
|
|
|
|
/// <summary>
|
|
/// Mapping table for the ItemValue BaseItem relation.
|
|
/// </summary>
|
|
public class ItemValueMap
|
|
{
|
|
/// <summary>
|
|
/// Gets or Sets the ItemId.
|
|
/// </summary>
|
|
public required Guid ItemId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets the ItemValueId.
|
|
/// </summary>
|
|
public required Guid ItemValueId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets the referenced <see cref="BaseItemEntity"/>.
|
|
/// </summary>
|
|
public required BaseItemEntity Item { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets the referenced <see cref="ItemValue"/>.
|
|
/// </summary>
|
|
public required ItemValue ItemValue { get; set; }
|
|
}
|