Pipefy/Services/IConfigurationService.cs

11 lines
184 B
C#

using Pipefy.Models;
namespace Pipefy.Services
{
public interface IConfigurationService
{
AppSettings GetAppSettings();
AppSettings LoadAppSettings();
}
}