Hello! I am Marina, aspiring to become a C# developer
namespace Life;
public static class Mel
{
public static string Name { get; } = "Marina Melnikova";
public static DateTime BirthDay { get; } = new(2004, 12, 14);
public static string Status { get; set; } = "Student";
public static List<string> Skills { get; set; } = new()
{
".Net",
"OOP",
"SOLID",
"REST API",
"PostgreSQL",
"EF Core",
"Unit",
};
}