CleanDateTimeResult.cs 658 B

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