fixes #551 - Add manual image selection for movies

This commit is contained in:
Luke Pulverenti
2013-10-31 21:48:14 -04:00
parent 9adcdd007a
commit 926a610075
14 changed files with 519 additions and 97 deletions

View File

@@ -18,4 +18,10 @@ namespace MediaBrowser.Model.Dto
/// <value>The original primary image aspect ratio.</value>
double? OriginalPrimaryImageAspectRatio { get; set; }
}
public enum RatingType
{
Score,
Likes
}
}

View File

@@ -1,4 +1,4 @@

using MediaBrowser.Model.Dto;
using MediaBrowser.Model.Entities;
namespace MediaBrowser.Model.Providers
@@ -55,5 +55,12 @@ namespace MediaBrowser.Model.Providers
/// </summary>
/// <value>The type.</value>
public ImageType Type { get; set; }
/// <summary>
/// Gets or sets the type of the rating.
/// </summary>
/// <value>The type of the rating.</value>
public RatingType RatingType { get; set; }
}
}

View File

@@ -18,5 +18,11 @@ namespace MediaBrowser.Model.Providers
/// </summary>
/// <value>The total record count.</value>
public int TotalRecordCount { get; set; }
/// <summary>
/// Gets or sets the providers.
/// </summary>
/// <value>The providers.</value>
public List<string> Providers { get; set; }
}
}