aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Library/IntroInfo.cs
blob: 0e761d549d4212c893956c0e1c00a9ecd2597abd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;

namespace MediaBrowser.Controller.Library
{
    public class IntroInfo
    {
        /// <summary>
        /// Gets or sets the path.
        /// </summary>
        /// <value>The path.</value>
        public string Path { get; set; }

        /// <summary>
        /// Gets or sets the item id.
        /// </summary>
        /// <value>The item id.</value>
        public Guid? ItemId { get; set; }
    }
}