19 lines
371 B
C#
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; }
|
|
}
|
|
}
|