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.
22 lines
658 B
22 lines
658 B
namespace Emby.Naming.Video
|
|
{
|
|
public class CleanDateTimeResult
|
|
{
|
|
/// <summary>
|
|
/// Gets or sets the name.
|
|
/// </summary>
|
|
/// <value>The name.</value>
|
|
public string Name { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets the year.
|
|
/// </summary>
|
|
/// <value>The year.</value>
|
|
public int? Year { get; set; }
|
|
/// <summary>
|
|
/// Gets or sets a value indicating whether this instance has changed.
|
|
/// </summary>
|
|
/// <value><c>true</c> if this instance has changed; otherwise, <c>false</c>.</value>
|
|
public bool HasChanged { get; set; }
|
|
}
|
|
}
|