Skip to content

Instantly share code, notes, and snippets.

View Moghaddm's full-sized avatar
☄️

Mohammad Mahdi Moghaddm

☄️
View GitHub Profile
@Moghaddm
Moghaddm / AnimalClass.cs
Created October 7, 2023 05:41
Animal Class Example
public class FatherLion
{
public string Color { get; set; }
}
public class ChildLion : FatherLion
{
}
@Moghaddm
Moghaddm / 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
{
}
@Moghaddm
Moghaddm / EmojiesGITHUB.md
Last active May 20, 2023 13:31
My Favorite Emojies 🚀
Type Emoji code
feat :sparkles:
fix 🐛 :bug:
docs 📚 :books:
style 💎 :gem:
refactor 🔨 :hammer:
perf 🚀 :rocket:
test 🚨 :rotating_light:
build 📦 :package: