aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Entities/LibraryUpdateInfo.cs
blob: e98b7ae2c44da48f1a5bc327c3e27e588b9fed3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
using System;
using System.Collections.Generic;

namespace MediaBrowser.Model.Entities
{
    /// <summary>
    /// Class LibraryUpdateInfo
    /// </summary>
    public class LibraryUpdateInfo
    {
        /// <summary>
        /// Gets or sets the folders.
        /// </summary>
        /// <value>The folders.</value>
        public List<Guid> Folders { get; set; }

        /// <summary>
        /// Gets or sets the items added.
        /// </summary>
        /// <value>The items added.</value>
        public List<Guid> ItemsAdded { get; set; }

        /// <summary>
        /// Gets or sets the items removed.
        /// </summary>
        /// <value>The items removed.</value>
        public List<Guid> ItemsRemoved { get; set; }

        /// <summary>
        /// Gets or sets the items updated.
        /// </summary>
        /// <value>The items updated.</value>
        public List<Guid> ItemsUpdated { get; set; }

        public LibraryUpdateInfo()
        {
            Folders = new List<Guid>();
            ItemsAdded = new List<Guid>();
            ItemsRemoved = new List<Guid>();
            ItemsUpdated = new List<Guid>();
        }
    }
}