jellyfin/MediaBrowser.Model/Entities/LibraryUpdateInfo.cs

47 lines
1.3 KiB
C#
Raw Normal View History

2013-02-21 02:33:05 +01:00
using System;
using System.Collections.Generic;
namespace MediaBrowser.Model.Entities
{
/// <summary>
/// Class LibraryUpdateInfo
/// </summary>
public class LibraryUpdateInfo
{
/// <summary>
2013-04-15 20:45:58 +02:00
/// Gets or sets the folders.
2013-02-21 02:33:05 +01:00
/// </summary>
2013-04-15 20:45:58 +02:00
/// <value>The folders.</value>
public List<Guid> Folders { get; set; }
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets or sets the items added.
/// </summary>
/// <value>The items added.</value>
2013-04-15 20:45:58 +02:00
public List<Guid> ItemsAdded { get; set; }
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets or sets the items removed.
/// </summary>
/// <value>The items removed.</value>
2013-04-15 20:45:58 +02:00
public List<Guid> ItemsRemoved { get; set; }
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets or sets the items updated.
/// </summary>
/// <value>The items updated.</value>
2013-04-15 20:45:58 +02:00
public List<Guid> ItemsUpdated { get; set; }
2013-04-21 03:17:59 +02:00
/// <summary>
/// Initializes a new instance of the <see cref="LibraryUpdateInfo"/> class.
/// </summary>
2013-04-15 20:45:58 +02:00
public LibraryUpdateInfo()
{
Folders = new List<Guid>();
ItemsAdded = new List<Guid>();
ItemsRemoved = new List<Guid>();
ItemsUpdated = new List<Guid>();
}
2013-02-21 02:33:05 +01:00
}
}