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