Skip to content

Instantly share code, notes, and snippets.

View moghitech's full-sized avatar
⏱️
Obsessed

Mohammad Mahdi Moghaddam(moghitech) moghitech

⏱️
Obsessed
View GitHub Profile
@moghitech
moghitech / AnimalClass.cs
Created October 7, 2023 05:41
Animal Class Example
public class FatherLion
{
public string Color { get; set; }
}
public class ChildLion : FatherLion
{
}
@moghitech
moghitech / PhoneClass.cs
Last active October 7, 2023 05:29
Phone Example Class Medium
public class Phone2010
{
public string Name { get; set; }
public int Price { get; set; }
}
public class Phone2015 : Phone2010
{
}
@moghitech
moghitech / EmojiesGITHUB.md
Last active May 29, 2024 08:33
my favorite emojies 🚀
Type Emoji code
feat :sparkles:
fix 🐛 :bug:
docs 📚 :books:
style 💎 :gem:
refactor 🔨 :hammer:
perf 🚀 :rocket:
test 🚨 :rotating_light:
build 📦 :package: