namespace Emby.Naming.TV
{
///
/// Holder object for Series information.
///
public class SeriesInfo
{
///
/// Initializes a new instance of the class.
///
/// Path to the file.
public SeriesInfo(string path)
{
Path = path;
}
///
/// Gets or sets the path.
///
/// The path.
public string Path { get; set; }
///
/// Gets or sets the name of the series.
///
/// The name of the series.
public string? Name { get; set; }
}
}