aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/Person.cs
diff options
context:
space:
mode:
authorLukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com>2012-08-18 04:22:54 -0400
committerLukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com>2012-08-18 04:22:54 -0400
commit7835d690a1ade4739171036cff335c86b5232d0e (patch)
tree0704c6bd3bf3adf3c23c67951397674ac87b5636 /MediaBrowser.Model/Entities/Person.cs
parentf32f000298114231f114f41b7c7c4534a0300de2 (diff)
Added a completely separate DTOBaseItem to remove the ApiBaseItemWrapper mess and shrink json output size.
Diffstat (limited to 'MediaBrowser.Model/Entities/Person.cs')
-rw-r--r--MediaBrowser.Model/Entities/Person.cs11
1 files changed, 1 insertions, 10 deletions
diff --git a/MediaBrowser.Model/Entities/Person.cs b/MediaBrowser.Model/Entities/Person.cs
index e85f8a905..2bd383802 100644
--- a/MediaBrowser.Model/Entities/Person.cs
+++ b/MediaBrowser.Model/Entities/Person.cs
@@ -15,20 +15,11 @@ namespace MediaBrowser.Model.Entities
{
public string Name { get; set; }
public string Overview { get; set; }
- public PersonType PersonType { get; set; }
+ public string Type { get; set; }
public override string ToString()
{
return Name;
}
}
-
- public enum PersonType
- {
- Other,
- Actor,
- Director,
- Writer,
- Producer
- }
}