diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-06-09 10:15:59 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-06-09 10:15:59 -0400 |
| commit | f651d981eaa1bd431bc56b192ad925347d5a7ea1 (patch) | |
| tree | 96144d380d427c0e2a822a49c2d98d6e8d3cf30a /MediaBrowser.Controller/Entities | |
| parent | 7ceb377cde65e4867937d0cb38475ad72dfe4441 (diff) | |
added LockedFields to BaseItem
Diffstat (limited to 'MediaBrowser.Controller/Entities')
| -rw-r--r-- | MediaBrowser.Controller/Entities/BaseItem.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/MediaBrowser.Controller/Entities/BaseItem.cs b/MediaBrowser.Controller/Entities/BaseItem.cs index 477e003c7..b4ff76c20 100644 --- a/MediaBrowser.Controller/Entities/BaseItem.cs +++ b/MediaBrowser.Controller/Entities/BaseItem.cs @@ -158,6 +158,18 @@ namespace MediaBrowser.Controller.Entities public bool DontFetchMeta { get; set; } /// <summary> + /// Gets or sets the locked fields. + /// </summary> + /// <value>The locked fields.</value> + public List<MetadataFields> LockedFields { get; set; } + + /// <summary> + /// Gets or sets the locked images. + /// </summary> + /// <value>The locked images.</value> + public List<ImageType> LockedImages { get; set; } + + /// <summary> /// Determines whether the item has a saved local image of the specified name (jpg or png). /// </summary> /// <param name="name">The name.</param> |
