Fix warnings MediaBrowser.Model

This commit is contained in:
Bond_009
2020-02-04 01:49:27 +01:00
parent 176e850973
commit f47ad85011
290 changed files with 1132 additions and 290 deletions

View File

@@ -1,44 +1,52 @@
namespace MediaBrowser.Model.Entities
{
/// <summary>
/// Enum MetadataFields
/// Enum MetadataFields.
/// </summary>
public enum MetadataFields
{
/// <summary>
/// The cast
/// The cast.
/// </summary>
Cast,
/// <summary>
/// The genres
/// The genres.
/// </summary>
Genres,
/// <summary>
/// The production locations
/// The production locations.
/// </summary>
ProductionLocations,
/// <summary>
/// The studios
/// The studios.
/// </summary>
Studios,
/// <summary>
/// The tags
/// The tags.
/// </summary>
Tags,
/// <summary>
/// The name
/// The name.
/// </summary>
Name,
/// <summary>
/// The overview
/// The overview.
/// </summary>
Overview,
/// <summary>
/// The runtime
/// The runtime.
/// </summary>
Runtime,
/// <summary>
/// The official rating
/// The official rating.
/// </summary>
OfficialRating
}