Skip to content

Instantly share code, notes, and snippets.

@mathieubrun
Last active December 14, 2015 03:29
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 mathieubrun/5021136 to your computer and use it in GitHub Desktop.
Save mathieubrun/5021136 to your computer and use it in GitHub Desktop.
public class FormElement
{
public string Name { get; set; }
public object Value { get; set; }
}
public class FormElement<T> : FormElement
{
}
public class DateElement : FormElement<DateTime>
{
}
public class StringElement : FormElement<string>
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment