aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Common/ScheduledTasks/IHasKey.cs
blob: 5736cb61624e284f62ad8519599cbd16580575f1 (plain)
1
2
3
4
5
6
7
namespace MediaBrowser.Common.ScheduledTasks
{
    public interface IHasKey
    {
        string Key { get; }
    }
}