Radarr/src/NzbDrone.Core/Annotations/SelectOptionsConverter.cs

10 lines
179 B
C#

using System.Collections.Generic;
namespace NzbDrone.Core.Annotations
{
public interface ISelectOptionsConverter
{
List<SelectOption> GetSelectOptions();
}
}