namespace MediaBrowser.Controller.Entities
{
///
/// This is the full Person object that can be retrieved with all of it's data.
///
public class Person : BaseEntity
{
}
///
/// This is the small Person stub that is attached to BaseItems
///
public class PersonInfo
{
public string Name { get; set; }
public string Overview { get; set; }
public string Type { get; set; }
public override string ToString()
{
return Name;
}
}
}