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.
33 lines
678 B
33 lines
678 B
#pragma warning disable CS1591
|
|
#nullable enable
|
|
|
|
namespace Emby.Naming.Video
|
|
{
|
|
public readonly struct CleanDateTimeResult
|
|
{
|
|
public CleanDateTimeResult(string name, int? year)
|
|
{
|
|
Name = name;
|
|
Year = year;
|
|
}
|
|
|
|
public CleanDateTimeResult(string name)
|
|
{
|
|
Name = name;
|
|
Year = null;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets the name.
|
|
/// </summary>
|
|
/// <value>The name.</value>
|
|
public string Name { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the year.
|
|
/// </summary>
|
|
/// <value>The year.</value>
|
|
public int? Year { get; }
|
|
}
|
|
}
|