mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-11 07:46:05 -07:00
10 lines
No EOL
227 B
C#
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);
|
|
}
|
|
} |