Last active
October 7, 2023 05:29
-
-
Save Moghaddm/ae4601bcdcc5f9323673f7d6c06ba0cb to your computer and use it in GitHub Desktop.
Phone Example Class Medium
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 Phone2010 | |
{ | |
public string Name { get; set; } | |
public int Price { get; set; } | |
} | |
public class Phone2015 : Phone2010 | |
{ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment