IHasKey.cs 120 B

1234567
  1. namespace MediaBrowser.Common.ScheduledTasks
  2. {
  3. public interface IHasKey
  4. {
  5. string Key { get; }
  6. }
  7. }