477045704e
Added "allWarningsAsErrors": true to NuGet config files across the solution to treat all warnings as errors, increasing build strictness. Updated project cache hashes and assembly info files to reflect these changes. Refactored C# code to use explicit `this.` for field and property assignments, improving clarity. Note: some method signatures were incorrectly changed to use `this.` as a prefix, which is invalid C# syntax and must be corrected before compiling. Binary files updated due to build changes.
34 lines
908 B
C#
34 lines
908 B
C#
// <copyright file="SeriesInfo.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace Emby.Naming.TV
|
|
{
|
|
/// <summary>
|
|
/// Holder object for Series information.
|
|
/// </summary>
|
|
public class SeriesInfo
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="SeriesInfo"/> class.
|
|
/// </summary>
|
|
/// <param name="path">Path to the file.</param>
|
|
public SeriesInfo(string path)
|
|
{
|
|
this.Path = path;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets or sets the path.
|
|
/// </summary>
|
|
/// <value>The path.</value>
|
|
public string Path { get; set; }
|
|
|
|
/// <summary>
|
|
/// Gets or sets the name of the series.
|
|
/// </summary>
|
|
/// <value>The name of the series.</value>
|
|
public string? Name { get; set; }
|
|
}
|
|
}
|