diff options
Diffstat (limited to 'MediaBrowser.Model/Entities/Person.cs')
| -rw-r--r-- | MediaBrowser.Model/Entities/Person.cs | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Entities/Person.cs b/MediaBrowser.Model/Entities/Person.cs new file mode 100644 index 000000000..320491d02 --- /dev/null +++ b/MediaBrowser.Model/Entities/Person.cs @@ -0,0 +1,22 @@ +using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace MediaBrowser.Model.Entities
+{
+ public class Person
+ {
+ public string Name { get; set; }
+ public string Description { get; set; }
+ public PersonType PersonType { get; set; }
+ }
+
+ public enum PersonType
+ {
+ Actor = 1,
+ Director = 2,
+ Writer = 3
+ }
+}
|
