12 lines
275 B
C#
12 lines
275 B
C#
namespace UWLib
|
|
{
|
|
public class LectureEvent
|
|
{
|
|
public int Id { get; set; }
|
|
public DateTime From { get; set; }
|
|
public DateTime To { get; set; }
|
|
public string Location { get; set; }
|
|
|
|
public Lecture Lecture { get; set; }
|
|
}
|
|
} |