mirror of
https://dev.azure.com/tstanciu94/Chatbot/_git/Chatbot
synced 2025-06-21 20:48:22 +03:00
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; }
|
|
}
|
|
}
|