Skip to content

Instantly share code, notes, and snippets.

@johanvergeer
Last active May 19, 2019 13:56
Show Gist options
  • Save johanvergeer/300a7aebba5bfd1b62f4fb2f468533ca to your computer and use it in GitHub Desktop.
Save johanvergeer/300a7aebba5bfd1b62f4fb2f468533ca to your computer and use it in GitHub Desktop.
Simple Person model
public class Person
{
public string Name { get; set; }
public int Age { get; set; }
public bool IsValid => !string.IsNullOrWhiteSpace(this.Name);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment