aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Entities/ItemValue.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Data/Entities/ItemValue.cs')
-rw-r--r--Jellyfin.Data/Entities/ItemValue.cs23
1 files changed, 22 insertions, 1 deletions
diff --git a/Jellyfin.Data/Entities/ItemValue.cs b/Jellyfin.Data/Entities/ItemValue.cs
index a3c0908bb..1063aaa8b 100644
--- a/Jellyfin.Data/Entities/ItemValue.cs
+++ b/Jellyfin.Data/Entities/ItemValue.cs
@@ -5,12 +5,33 @@ using System.ComponentModel.DataAnnotations.Schema;
namespace Jellyfin.Data.Entities;
+/// <summary>
+/// Represents an ItemValue for a BaseItem.
+/// </summary>
public class ItemValue
{
+ /// <summary>
+ /// Gets or Sets the reference ItemId.
+ /// </summary>
public Guid ItemId { get; set; }
- public required BaseItem Item { get; set; }
+ /// <summary>
+ /// Gets or Sets the referenced BaseItem.
+ /// </summary>
+ public required BaseItemEntity Item { get; set; }
+
+ /// <summary>
+ /// Gets or Sets the Type.
+ /// </summary>
public required int Type { get; set; }
+
+ /// <summary>
+ /// Gets or Sets the Value.
+ /// </summary>
public required string Value { get; set; }
+
+ /// <summary>
+ /// Gets or Sets the sanatised Value.
+ /// </summary>
public required string CleanValue { get; set; }
}