mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-02-27 15:02:41 +00:00
* spelling: anamorphic Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: associated Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: channelinfo Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: eagerly Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: enumerable Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: greater than/less than Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: greater Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: lineup Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: logs out Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: names Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: paging Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: playlist Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: sanitized Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> * spelling: saving Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --------- Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
38 lines
983 B
C#
38 lines
983 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Jellyfin.Data.Entities;
|
|
|
|
/// <summary>
|
|
/// Represents an ItemValue for a BaseItem.
|
|
/// </summary>
|
|
public class ItemValue
|
|
{
|
|
/// <summary>
|
|
/// Gets or Sets the ItemValueId.
|
|
/// </summary>
|
|
public required Guid ItemValueId { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets the Type.
|
|
/// </summary>
|
|
public required ItemValueType Type { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets the Value.
|
|
/// </summary>
|
|
public required string Value { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets the sanitized Value.
|
|
/// </summary>
|
|
public required string CleanValue { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or Sets all associated BaseItems.
|
|
/// </summary>
|
|
#pragma warning disable CA2227 // Collection properties should be read only
|
|
public ICollection<ItemValueMap>? BaseItemsMap { get; set; }
|
|
#pragma warning restore CA2227 // Collection properties should be read only
|
|
}
|