24 lines
557 B
C#
24 lines
557 B
C#
namespace adas_core.Domain.Models.MongoModels;
|
|
|
|
public class ServiceConfigTheme
|
|
{
|
|
public string DefaultTheme { get; set; } = string.Empty;
|
|
|
|
|
|
public List<ServiceConfigThemeTimetable> Timetables { get; set; } = [];
|
|
}
|
|
|
|
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;
|
|
} |