Skip to content

Instantly share code, notes, and snippets.

@dcomartin
Created June 23, 2016 01:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dcomartin/1a4ac595824b4dd1d5c6080c15f6723e to your computer and use it in GitHub Desktop.
Save dcomartin/1a4ac595824b4dd1d5c6080c15f6723e to your computer and use it in GitHub Desktop.
public class Route
{
public string Name { get; }
public string Path { get; }
public Route(string name, string path)
{
Name = name;
Path = path;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment