aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Data/Entities/People.cs
blob: 014a0f1c97ab95e3208f7ff8c791aec208ab9413 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;

namespace Jellyfin.Data.Entities;
public class People
{
    public Guid ItemId { get; set; }
    public BaseItem Item { get; set; }

    public required string Name { get; set; }
    public string? Role { get; set; }
    public string? PersonType { get; set; }
    public int? SortOrder { get; set; }
    public int? ListOrder { get; set; }
}