aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Entities/ItemValueMap.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Data/Entities/ItemValueMap.cs')
-rw-r--r--Jellyfin.Data/Entities/ItemValueMap.cs30
1 files changed, 0 insertions, 30 deletions
diff --git a/Jellyfin.Data/Entities/ItemValueMap.cs b/Jellyfin.Data/Entities/ItemValueMap.cs
deleted file mode 100644
index 94db6a011..000000000
--- a/Jellyfin.Data/Entities/ItemValueMap.cs
+++ /dev/null
@@ -1,30 +0,0 @@
-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; }
-}