11 lines
434 B
C#
11 lines
434 B
C#
![]() |
namespace DailyDigestWorker.Configuration
|
|||
|
{
|
|||
|
public class TelegramClientSettings
|
|||
|
{
|
|||
|
public int ApiId { get; set; }
|
|||
|
public required string ApiHash { get; set; }
|
|||
|
public required string PhoneNumber { get; set; }
|
|||
|
public string SessionPath { get; set; } = "telegram_session.dat"; // Значение по умолчанию
|
|||
|
public required string TargetChannelUsername { get; set; }
|
|||
|
}
|
|||
|
}
|