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.
36 lines
970 B
36 lines
970 B
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace MediaBrowser.Model.Entities
|
|
{
|
|
/// <summary>
|
|
/// Class LibraryUpdateInfo
|
|
/// </summary>
|
|
public class LibraryUpdateInfo
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the folder.
|
|
/// </summary>
|
|
/// <value>The folder.</value>
|
|
public BaseItemInfo Folder { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the items added.
|
|
/// </summary>
|
|
/// <value>The items added.</value>
|
|
public IEnumerable<BaseItemInfo> ItemsAdded { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the items removed.
|
|
/// </summary>
|
|
/// <value>The items removed.</value>
|
|
public IEnumerable<Guid> ItemsRemoved { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the items updated.
|
|
/// </summary>
|
|
/// <value>The items updated.</value>
|
|
public IEnumerable<Guid> ItemsUpdated { get; set; }
|
|
}
|
|
}
|