Last active
May 19, 2019 13:56
-
-
Save johanvergeer/300a7aebba5bfd1b62f4fb2f468533ca to your computer and use it in GitHub Desktop.
Simple Person model
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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