using System.ComponentModel; using System.ComponentModel.DataAnnotations; using UWLib; namespace UWLecturePlan.Models { public class LecturesViewModel { public string? Semester { get; set; } public string? Location { get; set; } public string? Branch { get; set; } public string? TypeFilter { get; set; } public string Date { get; set; } = DateTime.Today.ToString("dd.MM.yyyy"); public List LectureEvents { get; set; } = []; public List Branches { get; set; } = []; public List Types { get; set; } = []; public List Semesters { get; set; } = []; public Dictionary Days { get; set; } = []; } }