aboutsummaryrefslogtreecommitdiff
path: root/Emby.Naming/Video/StubResult.cs
blob: 7f9509ca56bf756cc6c09a9cf9e00f3de485c1d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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; }
    }
}