blob: 313f34b4125c25fa3eb8cce9b45a74fbf7e870fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#pragma warning disable CS1591
using System.Collections.Generic;
namespace MediaBrowser.Model.Services
{
public interface IHasHeaders
{
IDictionary<string, string> Headers { get; }
}
}
|