aboutsummaryrefslogtreecommitdiff
path: root/Emby.Naming/Video/StubResult.cs
blob: 5ac85528f546c302c3e3e10c5d0c5861603d7ecc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#pragma warning disable CS1591
#pragma warning disable SA1600

namespace Emby.Naming.Video
{
    public struct StubResult
    {
        /// <summary>
        /// Gets or sets a value indicating whether this instance is stub.
        /// </summary>
        /// <value><c>true</c> if this instance is stub; otherwise, <c>false</c>.</value>
        public bool IsStub { get; set; }

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