Created
October 7, 2023 05:41
-
-
Save Moghaddm/1fb5511a7298c4ebe3c327f55d226e85 to your computer and use it in GitHub Desktop.
Animal Class Example
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 FatherLion | |
{ | |
public string Color { get; set; } | |
} | |
public class ChildLion : FatherLion | |
{ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment