namespace Emby.Naming.TV { /// /// Holder object for result. /// public class SeriesPathParserResult { /// /// Gets or sets the name of the series. /// /// The name of the series. public string? SeriesName { get; set; } /// /// Gets or sets a value indicating whether parsing was successful. /// public bool Success { get; set; } } }