DocSpace-buildtools/common/ASC.Core.Common/Notify/Telegram/ITelegramLoginProvider.cs

10 lines
241 B
C#

namespace ASC.Core.Common.Notify.Telegram;
public interface ITelegramLoginProvider
{
string TelegramBotToken { get; }
string TelegramBotName { get; }
int TelegramAuthTokenLifespan { get; }
string TelegramProxy { get; }
}