updated nuget

This commit is contained in:
Luke Pulverenti
2013-11-13 11:45:41 -05:00
parent 90d4f9a6fd
commit e0f46bb91e
7 changed files with 47 additions and 17 deletions

View File

@@ -294,5 +294,13 @@ namespace MediaBrowser.Controller.Library
/// <param name="item">The item.</param>
/// <returns>System.String.</returns>
string FindCollectionType(BaseItem item);
/// <summary>
/// Saves the metadata.
/// </summary>
/// <param name="item">The item.</param>
/// <param name="updateType">Type of the update.</param>
/// <returns>Task.</returns>
Task SaveMetadata(BaseItem item, ItemUpdateType updateType);
}
}

View File

@@ -12,5 +12,11 @@ namespace MediaBrowser.Controller.Library
/// </summary>
/// <value>The item.</value>
public BaseItem Item { get; set; }
/// <summary>
/// Gets or sets the item.
/// </summary>
/// <value>The item.</value>
public ItemUpdateType UpdateReason { get; set; }
}
}