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