IHasHeaders.cs 175 B

123456789
  1. using System.Collections.Generic;
  2. namespace MediaBrowser.Model.Services
  3. {
  4. public interface IHasHeaders
  5. {
  6. IDictionary<string, string> Headers { get; }
  7. }
  8. }