jellyfin/MediaBrowser.Model/Entities/Person.cs

26 lines
602 B
C#
Raw Normal View History


2012-07-12 08:55:27 +02:00
namespace MediaBrowser.Model.Entities
{
2012-07-12 19:09:35 +02:00
/// <summary>
/// This is the full Person object that can be retrieved with all of it's data.
/// </summary>
public class Person : BaseEntity
2012-07-12 19:09:35 +02:00
{
}
/// <summary>
/// This is the small Person stub that is attached to BaseItems
/// </summary>
public class PersonInfo
2012-07-12 08:55:27 +02:00
{
public string Name { get; set; }
2012-07-12 19:09:35 +02:00
public string Overview { get; set; }
public string Type { get; set; }
public override string ToString()
{
return Name;
}
2012-07-12 08:55:27 +02:00
}
}