aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Entities/ChildDefinition.cs
blob: e8d68b5eab8475e26a18e5533002097de7c376ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;

namespace MediaBrowser.Controller.Entities
{
    /// <summary>
    /// Class ChildDefinition
    /// </summary>
    public class ChildDefinition
    {
        /// <summary>
        /// Gets or sets the item id.
        /// </summary>
        /// <value>The item id.</value>
        public Guid ItemId { get; set; }

        /// <summary>
        /// Gets or sets the type.
        /// </summary>
        /// <value>The type.</value>
        public string Type { get; set; }
    }
}