2019-12-13 19:11:37 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
#pragma warning disable SA1600
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
namespace Emby.Naming.Video
|
|
|
|
{
|
|
|
|
public class CleanStringResult
|
|
|
|
{
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the name.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The name.</value>
|
|
|
|
public string Name { get; set; }
|
2019-12-13 19:11:37 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
/// <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; }
|
|
|
|
}
|
|
|
|
}
|