Fixed issue of only one person getting picked up

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti
2012-08-13 21:46:52 -04:00
parent 5f5f2fcdb4
commit caffc4c3ec
2 changed files with 17 additions and 3 deletions

View File

@@ -17,10 +17,16 @@ namespace MediaBrowser.Model.Entities
public string Name { get; set; }
public string Overview { get; set; }
public PersonType PersonType { get; set; }
public override string ToString()
{
return Name;
}
}
public enum PersonType
{
Other,
Actor,
Director,
Writer,