namespace adas_core.Domain.Models.MongoModels;
///
/// Represents the configuration settings for the theme of a service.
///
public class ServiceConfigTheme
{
public string DefaultTheme { get; set; } = string.Empty;
public List Timetables { get; set; } = [];
}
///
/// Represents the configuration settings for a service's theme timetable.
///
public class ServiceConfigThemeTimetable
{
public string Theme { get; set; } = string.Empty;
public string StartDay { get; set; } = string.Empty;
public string EndDay { get; set; } = string.Empty;
public string StartHour { get; set; } = string.Empty;
public string EndHour { get; set; } = string.Empty;
}