aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Entities/People.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Jellyfin.Data/Entities/People.cs')
-rw-r--r--Jellyfin.Data/Entities/People.cs32
1 files changed, 0 insertions, 32 deletions
diff --git a/Jellyfin.Data/Entities/People.cs b/Jellyfin.Data/Entities/People.cs
deleted file mode 100644
index 18c778b17..000000000
--- a/Jellyfin.Data/Entities/People.cs
+++ /dev/null
@@ -1,32 +0,0 @@
-#pragma warning disable CA2227 // Collection properties should be read only
-
-using System;
-using System.Collections.Generic;
-
-namespace Jellyfin.Data.Entities;
-
-/// <summary>
-/// People entity.
-/// </summary>
-public class People
-{
- /// <summary>
- /// Gets or Sets the PeopleId.
- /// </summary>
- public required Guid Id { get; set; }
-
- /// <summary>
- /// Gets or Sets the Persons Name.
- /// </summary>
- public required string Name { get; set; }
-
- /// <summary>
- /// Gets or Sets the Type.
- /// </summary>
- public string? PersonType { get; set; }
-
- /// <summary>
- /// Gets or Sets the mapping of People to BaseItems.
- /// </summary>
- public ICollection<PeopleBaseItemMap>? BaseItems { get; set; }
-}