Skip to content

Instantly share code, notes, and snippets.

@IvsonEmidio
Created May 1, 2022 22:11
Show Gist options
  • Save IvsonEmidio/c9c4418ff2cc6c80430d9966fa59366e to your computer and use it in GitHub Desktop.
Save IvsonEmidio/c9c4418ff2cc6c80430d9966fa59366e to your computer and use it in GitHub Desktop.
SOLID - OCP - VIOLATION
//First generic class
class Diablo {
private readonly brand = "Lamborghini";
private readonly color = "black";
}
//Second generic class
class Soul {
readonly brand = "Kia";
readonly color = "Red";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment