Skip to content

Instantly share code, notes, and snippets.

@horsdal
Last active December 14, 2015 15:19
Show Gist options
  • Save horsdal/5106712 to your computer and use it in GitHub Desktop.
Save horsdal/5106712 to your computer and use it in GitHub Desktop.
public class CourseTemplate
{
public int Limit { get; set; }
public string Description { get; set; }
}
public struct Course
{
public CourseTemplate Template { get; set; }
public bool IsMorning { get; set; }
public RegistrantList Registrants { get; set; }
}
public class Registrant
{
public CourseList CourseWishes { get; set; }
public string Name { get; set; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment