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