aboutsummaryrefslogtreecommitdiff
path: root/Emby.Naming/Video/CleanStringResult.cs
blob: 0282863e0639643a8bd3df3052bf21fa92941af7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace Emby.Naming.Video
{
    public class CleanStringResult
    {
        /// <summary>
        /// Gets or sets the name.
        /// </summary>
        /// <value>The name.</value>
        public string Name { 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; }
    }
}