using System;
using System.Collections.Generic;
namespace Jellyfin.Data.Entities;
#pragma warning disable CA2227 // Collection properties should be read only
///
/// People entity.
///
public class People
{
///
/// Gets or Sets the PeopleId.
///
public required Guid Id { get; set; }
///
/// Gets or Sets the Persons Name.
///
public required string Name { get; set; }
///
/// Gets or Sets the Type.
///
public string? PersonType { get; set; }
///
/// Gets or Sets the mapping of People to BaseItems.
///
public ICollection? BaseItems { get; set; }
}