diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-07-05 13:40:51 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-07-05 13:40:51 -0400 |
| commit | 6b84095adda46ed430c4552590d00d5841d953cc (patch) | |
| tree | ed0396f407a4d8810418aa5877a8f0f56bb9a153 /MediaBrowser.Controller/Entities/BaseItem.cs | |
| parent | 6ad5c9fa71e6a74deb21850d7632d914e2f2977a (diff) | |
get movie ratings from imdb via omdb
Diffstat (limited to 'MediaBrowser.Controller/Entities/BaseItem.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/BaseItem.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/BaseItem.cs b/MediaBrowser.Controller/Entities/BaseItem.cs index 94fcd250e..dff0203b9 100644 --- a/MediaBrowser.Controller/Entities/BaseItem.cs +++ b/MediaBrowser.Controller/Entities/BaseItem.cs @@ -575,6 +575,13 @@ namespace MediaBrowser.Controller.Entities /// </summary> /// <value>The community rating.</value> public float? CommunityRating { get; set; } + + /// <summary> + /// Gets or sets the community rating vote count. + /// </summary> + /// <value>The community rating vote count.</value> + public int VoteCount { get; set; } + /// <summary> /// Gets or sets the run time ticks. /// </summary> |
