CleanStringResult.cs 500 B

12345678910111213141516
  1. namespace Emby.Naming.Video
  2. {
  3. public class CleanStringResult
  4. {
  5. /// <summary>
  6. /// Gets or sets the name.
  7. /// </summary>
  8. /// <value>The name.</value>
  9. public string Name { get; set; }
  10. /// <summary>
  11. /// Gets or sets a value indicating whether this instance has changed.
  12. /// </summary>
  13. /// <value><c>true</c> if this instance has changed; otherwise, <c>false</c>.</value>
  14. public bool HasChanged { get; set; }
  15. }
  16. }