15 lines
268 B
C#
15 lines
268 B
C#
using UWLib;
|
|
|
|
namespace UWLecturePlan.Models
|
|
{
|
|
public class LecturesViewModel
|
|
{
|
|
|
|
public string CurrentSemester { get; set; }
|
|
|
|
public string LocationFilter { get; set; }
|
|
|
|
public List<LectureEvent> LectureEvents { get; set; }
|
|
}
|
|
}
|