2012-07-16 12:50:44 -04:00
|
|
|
|
|
2012-09-10 21:34:02 -04:00
|
|
|
|
namespace MediaBrowser.Controller.Entities
|
2012-07-12 02:55:27 -04:00
|
|
|
|
{
|
2012-07-12 13:09:35 -04:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// This is the full Person object that can be retrieved with all of it's data.
|
|
|
|
|
|
/// </summary>
|
2012-08-12 19:57:54 -04:00
|
|
|
|
public class Person : BaseEntity
|
2012-07-12 13:09:35 -04:00
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// This is the small Person stub that is attached to BaseItems
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class PersonInfo
|
2012-07-12 02:55:27 -04:00
|
|
|
|
{
|
|
|
|
|
|
public string Name { get; set; }
|
2012-07-12 13:09:35 -04:00
|
|
|
|
public string Overview { get; set; }
|
2012-08-18 04:22:54 -04:00
|
|
|
|
public string Type { get; set; }
|
2012-08-13 21:46:52 -04:00
|
|
|
|
|
|
|
|
|
|
public override string ToString()
|
|
|
|
|
|
{
|
|
|
|
|
|
return Name;
|
|
|
|
|
|
}
|
2012-07-12 02:55:27 -04:00
|
|
|
|
}
|
|
|
|
|
|
}
|