aboutsummaryrefslogtreecommitdiff
path: root/Emby.Naming/TV/SeasonPathParserResult.cs
blob: eab27a4a5f03f11bb96c70682cb5eb478d68f6c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace Emby.Naming.TV
{
    public class SeasonPathParserResult
    {
        /// <summary>
        /// Gets or sets the season number.
        /// </summary>
        /// <value>The season number.</value>
        public int? SeasonNumber { get; set; }
        /// <summary>
        /// Gets or sets a value indicating whether this <see cref="SeasonPathParserResult"/> is success.
        /// </summary>
        /// <value><c>true</c> if success; otherwise, <c>false</c>.</value>
        public bool Success { get; set; }
        public bool IsSeasonFolder { get; set; }
    }
}