added LockedFields to BaseItem

This commit is contained in:
Luke Pulverenti
2013-06-09 10:15:59 -04:00
parent 7ceb377cde
commit f651d981ea
7 changed files with 69 additions and 0 deletions

View File

@@ -0,0 +1,30 @@

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