jellyfin/Emby.Naming/TV/SeasonPathParserResult.cs

22 lines
624 B
C#
Raw Normal View History

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