aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Library/IntroInfo.cs
blob: 283cc631caa731032c1e6e0e6029efe46786190a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma warning disable CS1591

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; }
    }
}