using System.Collections.Generic;
namespace About;
public enum JobType { FullTime, PartTime, Volunteer };
public static class Work
{
public const string CurrentProfession = "Junior .NET Software Developer";
public static readonly List<(string, string, JobType)> Hobbies = new()
{
("Ardonagh Group", "Junior .NET Software Developer", JobType.FullTime),
("Wyclif Independent Christian School", "Web Developer (Volunteer)", JobType.Volunteer),
};
public static readonly List<string> Skills = new()
{
"C#", ".NET", "ASP.NET", "Azure",
"T-SQL", "HTML", "CSS", "React",
"JavaScript/TypeScript", "Git",
"CI/CD", "C++",
// And more...
};
}MrT Stephens