mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-03 01:01:34 +02:00
10 lines
179 B
C#
10 lines
179 B
C#
using System.Collections.Generic;
|
|
|
|
namespace NzbDrone.Core.Annotations
|
|
{
|
|
public interface ISelectOptionsConverter
|
|
{
|
|
List<SelectOption> GetSelectOptions();
|
|
}
|
|
}
|