jellyfin/MediaBrowser.Model/Entities/MetadataFields.cs

31 lines
594 B
C#
Raw Normal View History

2013-06-09 16:15:59 +02:00

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
}
}