diff options
| author | Techywarrior <techywarrior@gmail.com> | 2013-04-13 17:04:49 -0700 |
|---|---|---|
| committer | Techywarrior <techywarrior@gmail.com> | 2013-04-13 17:04:49 -0700 |
| commit | 419d85116798bd5e5327c41d711d6cb46d70caeb (patch) | |
| tree | b7b94ae285e70f97c09c3343be4763ac59229957 /MediaBrowser.Model | |
| parent | 89ed33bbbcc3f47299a6104cbb1dd20ad3589510 (diff) | |
| parent | 7f1fdbf223f95dfc1435a8ff1b82fd635cc9b1d9 (diff) | |
Merge branch 'master' of https://github.com/MediaBrowser/MediaBrowser
Diffstat (limited to 'MediaBrowser.Model')
| -rw-r--r-- | MediaBrowser.Model/Entities/MBRegistrationRecord.cs | 8 | ||||
| -rw-r--r-- | MediaBrowser.Model/Entities/PersonType.cs | 4 | ||||
| -rw-r--r-- | MediaBrowser.Model/Querying/ItemQuery.cs | 2 |
3 files changed, 9 insertions, 5 deletions
diff --git a/MediaBrowser.Model/Entities/MBRegistrationRecord.cs b/MediaBrowser.Model/Entities/MBRegistrationRecord.cs index 1349da4d33..5eeb07a66f 100644 --- a/MediaBrowser.Model/Entities/MBRegistrationRecord.cs +++ b/MediaBrowser.Model/Entities/MBRegistrationRecord.cs @@ -4,10 +4,10 @@ namespace Mediabrowser.Model.Entities { public class MBRegistrationRecord { - public DateTime ExpirationDate = DateTime.MinValue; - public bool IsRegistered = false; - public bool RegChecked = false; - public bool RegError = false; + public DateTime ExpirationDate { get; set; } + public bool IsRegistered { get; set;} + public bool RegChecked { get; set; } + public bool RegError { get; set; } private bool? _isInTrial; public bool TrialVersion { diff --git a/MediaBrowser.Model/Entities/PersonType.cs b/MediaBrowser.Model/Entities/PersonType.cs index fca1fbf201..e8c46e29af 100644 --- a/MediaBrowser.Model/Entities/PersonType.cs +++ b/MediaBrowser.Model/Entities/PersonType.cs @@ -26,5 +26,9 @@ namespace MediaBrowser.Model.Entities /// The music artist /// </summary> public const string MusicArtist = "MusicArtist"; + /// <summary> + /// The guest star + /// </summary> + public const string GuestStar = "GuestStar"; } } diff --git a/MediaBrowser.Model/Querying/ItemQuery.cs b/MediaBrowser.Model/Querying/ItemQuery.cs index 86886d751a..59a5e938d8 100644 --- a/MediaBrowser.Model/Querying/ItemQuery.cs +++ b/MediaBrowser.Model/Querying/ItemQuery.cs @@ -120,7 +120,7 @@ namespace MediaBrowser.Model.Querying /// If the Person filter is used, this can also be used to restrict to a specific person type /// </summary> /// <value>The type of the person.</value> - public string PersonType { get; set; } + public string[] PersonTypes { get; set; } /// <summary> /// Search characters used to find items |
