Person.cs 607 B

12345678910111213141516171819202122232425
  1. 
  2. namespace MediaBrowser.Controller.Entities
  3. {
  4. /// <summary>
  5. /// This is the full Person object that can be retrieved with all of it's data.
  6. /// </summary>
  7. public class Person : BaseEntity
  8. {
  9. }
  10. /// <summary>
  11. /// This is the small Person stub that is attached to BaseItems
  12. /// </summary>
  13. public class PersonInfo
  14. {
  15. public string Name { get; set; }
  16. public string Overview { get; set; }
  17. public string Type { get; set; }
  18. public override string ToString()
  19. {
  20. return Name;
  21. }
  22. }
  23. }