DocSpace-buildtools/common/services/ASC.TelegramService/Core/TenantTgClient.cs

11 lines
279 B
C#
Raw Normal View History

2022-03-15 16:59:24 +00:00
namespace ASC.TelegramService.Core;
2022-02-17 11:16:52 +00:00
public class TenantTgClient
2020-09-24 14:30:27 +00:00
{
2022-02-17 11:16:52 +00:00
public string Token { get; set; }
public TelegramBotClient Client { get; set; }
public string Proxy { get; set; }
public int TokenLifeSpan { get; set; }
public int TenantId { get; set; }
2020-09-24 14:30:27 +00:00
}