CleanStringResult.cs 504 B

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