You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
853 B
27 lines
853 B
namespace Emby.Naming.TV
|
|
{
|
|
/// <summary>
|
|
/// Data object to pass result of <see cref="SeasonPathParser"/>.
|
|
/// </summary>
|
|
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; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether "Is season folder".
|
|
/// Seems redundant and barely used.
|
|
/// </summary>
|
|
public bool IsSeasonFolder { get; set; }
|
|
}
|
|
}
|