using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace Jellyfin.Data.Entities; /// /// Represents an ItemValue for a BaseItem. /// public class ItemValue { /// /// Gets or Sets the reference ItemId. /// public required Guid ItemId { get; set; } /// /// Gets or Sets the referenced BaseItem. /// public required BaseItemEntity Item { get; set; } /// /// Gets or Sets the Type. /// public required int Type { get; set; } /// /// Gets or Sets the Value. /// public required string Value { get; set; } /// /// Gets or Sets the sanatised Value. /// public required string CleanValue { get; set; } }