Pipefy/Services/IConfigurationService.cs

10 lines
145 B
C#

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