Update StyleCop

This commit is contained in:
Bond_009
2021-12-24 18:28:27 +01:00
parent 2e7d173188
commit cbfa355e31
103 changed files with 550 additions and 465 deletions

View File

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