Lectureplan/UWLecturePlan/Models/LecturesViewModel.cs
Robin Weichselbraun 03ddeba846 Performance update with HTMLAgilityPack
Added Branches
Added LinksToScrape
Added ScrapedLinks
2024-10-12 17:36:23 +02:00

19 lines
371 B
C#

using UWLib;
namespace UWLecturePlan.Models
{
public class LecturesViewModel
{
public string CurrentSemester { get; set; }
public string? LocationFilter { get; set; }
public string? BranchFilter { get; set; }
public List<LectureEvent> LectureEvents { get; set; }
public List<string> Branches { get; set; }
}
}