daily_digest/Configuration/TelegramClientSettings.cs

11 lines
434 B
C#
Raw Normal View History

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; }
}
}