Ombi/src/Ombi.Store/Repository/IApplicationConfigRepository.cs

10 lines
No EOL
227 B
C#

using System.Threading.Tasks;
using Ombi.Store.Entities;
namespace Ombi.Store.Repository
{
public interface IApplicationConfigRepository
{
Task<ApplicationConfiguration> Get(ConfigurationTypes type);
}
}