Skip to content

Instantly share code, notes, and snippets.

@horsdal
Last active December 14, 2015 15:19
Show Gist options
  • Save horsdal/5106725 to your computer and use it in GitHub Desktop.
Save horsdal/5106725 to your computer and use it in GitHub Desktop.
public class Solution
{
public CourseList MoringCourses { get; private set; }
public CourseList AfternoonCourses { get; private set; }
public Solution(CourseList moringCourses, CourseList afternoonCourses)
{
AfternoonCourses = afternoonCourses;
MoringCourses = moringCourses;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment