namespace Emby.Naming.Video
{
    public class CleanDateTimeResult
    {
        /// 
        /// Gets or sets the name.
        /// 
        /// The name.
        public string Name { get; set; }
        /// 
        /// Gets or sets the year.
        /// 
        /// The year.
        public int? Year { get; set; }
        /// 
        /// Gets or sets a value indicating whether this instance has changed.
        /// 
        /// true if this instance has changed; otherwise, false.
        public bool HasChanged { get; set; }
    }
}