Skip to content

Instantly share code, notes, and snippets.

@ThiagoBarradas
Last active March 1, 2021 01:37
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 ThiagoBarradas/96793254c8b5bd73040ea5c1a2b9e20e to your computer and use it in GitHub Desktop.
Save ThiagoBarradas/96793254c8b5bd73040ea5c1a2b9e20e to your computer and use it in GitHub Desktop.
SOLID [I] - Interface Example 1
public interface IHuman
{
string Name { get; set; }
string Document { get; set; }
long Age { get; set; }
void Move(long x, long y, long z);
void Speak(string message);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment