public class Profile
{
public string name { get; set; }
public int age { get; set; }
public string city { get; set; }
public string[] Skills { get; set; }
}
public class Developer
{
public Profile getDevFullstack()
{
Profile Dev = new Profile();
Dev.name = "Willian gomes Vitor";
Dev.age = 24;
Dev.city = "Belo Horizonte | MG";
Dev.Skills = new string[] { "ReactJS-TS", "C#", "Aspx", "NodeJS-TS", "Docker", "SQL Server", "Power BI", "SSIS"};
return Dev;
}
}
Utilizo deste espaço para compartilhar alguns de meus projetos e estudos.
- Belo Horizonte
Popular repositories Loading
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.