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-07-16 12:50:44 -0400
committerLukePulverenti Luke Pulverenti luke pulverenti <LukePulverenti Luke Pulverenti luke.pulverenti@gmail.com>2012-07-16 12:50:44 -0400
commit6fbd5cf46407a212fadb52eee00c7ac7690430ea (patch)
tree0e21ea9603d6c78801ac01e1e0e412acd2341a45 /MediaBrowser.Model/Entities/Person.cs
parentbaedafbeb92db3ddf434f038984970bf0a6ac0c1 (diff)
All calls to get items now require passing in a userId. Made the model project portable. Also filled in more api calls.
Diffstat (limited to 'MediaBrowser.Model/Entities/Person.cs')
-rw-r--r--MediaBrowser.Model/Entities/Person.cs14
1 files changed, 5 insertions, 9 deletions
diff --git a/MediaBrowser.Model/Entities/Person.cs b/MediaBrowser.Model/Entities/Person.cs
index 521adb50cd..93f541a18e 100644
--- a/MediaBrowser.Model/Entities/Person.cs
+++ b/MediaBrowser.Model/Entities/Person.cs
@@ -1,9 +1,4 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Text;
-using System.Threading.Tasks;
-
+
namespace MediaBrowser.Model.Entities
{
/// <summary>
@@ -26,8 +21,9 @@ namespace MediaBrowser.Model.Entities
public enum PersonType
{
- Actor = 1,
- Director = 2,
- Writer = 3
+ Actor,
+ Director,
+ Writer,
+ Producer
}
}