CleanDateTimeResult.cs 662 B

12345678910111213141516171819202122
  1. 
  2. namespace Emby.Naming.Video
  3. {
  4. public class CleanDateTimeResult
  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 the year.
  13. /// </summary>
  14. /// <value>The year.</value>
  15. public int? Year { get; set; }
  16. /// <summary>
  17. /// Gets or sets a value indicating whether this instance has changed.
  18. /// </summary>
  19. /// <value><c>true</c> if this instance has changed; otherwise, <c>false</c>.</value>
  20. public bool HasChanged { get; set; }
  21. }
  22. }