blob: 72c39699b2c7949a7b1b18323edf23b1f13669ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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 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; }
}
|