added TimeLogCount

This commit is contained in:
chris.watts90@outlook.com 2017-02-08 22:22:49 +00:00
parent 0867cbd7a6
commit 34665985a5

View File

@ -9,6 +9,8 @@ namespace Interfaces
TimeLogs = new List<TimeLog>();
}
public int CalendarWeek { get; set; }
public int TimeLogCount { get { return TimeLogs.Count; } }
public List<TimeLog> TimeLogs { get; set; }
}
//TODO: group by day of week.
}