You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
945 B
46 lines
945 B
6 years ago
|
namespace MediaBrowser.Model.Entities
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// Enum MetadataFields
|
||
|
/// </summary>
|
||
|
public enum MetadataFields
|
||
|
{
|
||
|
/// <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
|
||
|
}
|
||
|
}
|