10 lines
178 B
C#
10 lines
178 B
C#
|
using Chatbot.Api.Domain.Models.Settings;
|
|||
|
|
|||
|
namespace Chatbot.Api.Domain.Services
|
|||
|
{
|
|||
|
public interface IParamProvider
|
|||
|
{
|
|||
|
Credentials Credentials { get; }
|
|||
|
}
|
|||
|
}
|