Skip to content

Instantly share code, notes, and snippets.

@horsdal
Created March 13, 2013 21:06
Show Gist options
  • Save horsdal/5156211 to your computer and use it in GitHub Desktop.
Save horsdal/5156211 to your computer and use it in GitHub Desktop.
public class CourseTemplate
{
public int Limit { get; private set; }
public string Description { get; private set; }
public CourseTemplate(int limit, string description)
{
Description = description;
Limit = limit;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment