jellyfin/Emby.Naming/TV/SeasonPathParserResult.cs

22 lines
624 B
C#
Raw Normal View History

#pragma warning disable CS1591
2018-09-12 13:26:21 -04:00
namespace Emby.Naming.TV
{
public class SeasonPathParserResult
{
/// <summary>
2020-03-25 12:53:03 -04:00
/// Gets or sets the season number.
2018-09-12 13:26:21 -04:00
/// </summary>
/// <value>The season number.</value>
public int? SeasonNumber { get; set; }
2019-05-10 14:37:42 -04:00
2018-09-12 13:26:21 -04:00
/// <summary>
2020-03-25 12:53:03 -04:00
/// Gets or sets a value indicating whether this <see cref="SeasonPathParserResult" /> is success.
2018-09-12 13:26:21 -04:00
/// </summary>
/// <value><c>true</c> if success; otherwise, <c>false</c>.</value>
public bool Success { get; set; }
2019-05-10 14:37:42 -04:00
2018-09-12 13:26:21 -04:00
public bool IsSeasonFolder { get; set; }
}
}