public class Developer
{
public string Name { get; set; } = "Nguyen Thanh An";
public string Role { get; set; } = "Backend & Game Developer";
public string Location { get; set; } = "Vietnam 🇻🇳";
public string Website { get; set; } = "thanhandemon.com";
public List<string> Passions { get; set; } = new()
{
"Backend Architecture",
"Game Development",
"System Design"
};
public string CurrentFocus { get; set; } = "Backend APIs & Game Engines";
public List<string> BackendStack { get; set; } = new()
{
".NET Core", "NestJS", "Express", "Go",
"Django", "Flask", "FastAPI", "Spring Boot"
};
public List<string> GameEngines { get; set; } = new() { "Unity", "Godot" };
public List<string> FrontendStack { get; set; } = new()
{
"React", "Next.js", "React Native"
};
public List<string> IDEs { get; set; } = new()
{
"VS Code", "Visual Studio", "IntelliJ IDEA",
"Rider", "PyCharm", "Android Studio", "Xcode"
};
public string LifePhilosophy { get; set; } = "Build robust systems, create epic games! 🚀";
public string FunFact { get; set; } = "I turn coffee into scalable backends ☕→💻";
public void SayHi()
{
Console.WriteLine("Thanks for dropping by! Let's build something amazing together! ✨");
}
}
var thanhan = new Developer();
thanhan.SayHi();|
🎮 Game Developer
Unity & Godot enthusiast |
⚙️ Backend Expert
Building scalable systems |
|
🚀 API Architect
.NET Core & NestJS |
☕ Coffee Powered
Best code written at 2 AM |



