PathSubstitution.cs 511 B

1234567891011121314151617181920
  1. #nullable enable
  2. namespace MediaBrowser.Model.Configuration
  3. {
  4. /// <summary>
  5. /// Defines the <see cref="PathSubstitution" />.
  6. /// </summary>
  7. public class PathSubstitution
  8. {
  9. /// <summary>
  10. /// Gets or sets the value to substitute.
  11. /// </summary>
  12. public string From { get; set; } = string.Empty;
  13. /// <summary>
  14. /// Gets or sets the value to substitution with.
  15. /// </summary>
  16. public string To { get; set; } = string.Empty;
  17. }
  18. }