add TimeLog initialiser.

This commit is contained in:
chris.watts90@outlook.com 2017-02-06 22:05:50 +00:00
parent 35cc0c46b1
commit e60c1f55bb

View File

@ -4,6 +4,10 @@ namespace Interfaces
{ {
public class TimeLogList public class TimeLogList
{ {
public TimeLogList()
{
TimeLogs = new List<TimeLog>();
}
public int CalendarWeek { get; set; } public int CalendarWeek { get; set; }
public List<TimeLog> TimeLogs { get; set; } public List<TimeLog> TimeLogs { get; set; }
} }