PathSubstitution.cs 493 B

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