daily_digest/Configuration/SchedulingSettings.cs
2025-04-12 10:20:46 +07:00

13 lines
540 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System.Collections.Generic; // Для List
namespace DailyDigestWorker.Configuration
{
public class SchedulingSettings
{
// Новый список: содержит объекты с временем и каналом
public List<ScheduleEntry>? Schedules { get; set; }
// Идентификатор целевого часового пояса остается
public string TargetTimeZoneId { get; set; } = "UTC"; // Безопасное значение по умолчанию
}
}