11 lines
184 B
C#
11 lines
184 B
C#
using Pipefy.Models;
|
|
|
|
namespace Pipefy.Services
|
|
{
|
|
public interface IConfigurationService
|
|
{
|
|
AppSettings GetAppSettings();
|
|
AppSettings LoadAppSettings();
|
|
}
|
|
}
|