Skip to content

Instantly share code, notes, and snippets.

@lfmundim
Last active April 27, 2020 22:49
Show Gist options
  • Save lfmundim/5327bd1d70bb0af7489099326edb7d1f to your computer and use it in GitHub Desktop.
Save lfmundim/5327bd1d70bb0af7489099326edb7d1f to your computer and use it in GitHub Desktop.
To be used in medium
public class Bird
{
    // whatever properties do birds have
    public BirdType Type { get; set; }
}

public enum BirdType
{
    African,
    American,
    European
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment