jellyfin/MediaBrowser.Model/Entities/Person.cs
LukePulverenti Luke Pulverenti luke pulverenti 4c9f77eead Added some resolver improvements
2012-07-12 13:09:35 -04:00

33 lines
797 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MediaBrowser.Model.Entities
{
/// <summary>
/// This is the full Person object that can be retrieved with all of it's data.
/// </summary>
public class Person : BaseItem
{
public PersonType PersonType { get; set; }
}
/// <summary>
/// This is the small Person stub that is attached to BaseItems
/// </summary>
public class PersonInfo
{
public string Name { get; set; }
public string Overview { get; set; }
public PersonType PersonType { get; set; }
}
public enum PersonType
{
Actor = 1,
Director = 2,
Writer = 3
}
}