MrT Stephens

using System.Collections.Generic;

namespace Abouts;

public static class Personal
{
    public const string Name = "Thomas Stephens";

    public const string Location = "United Kingdom";

    public static readonly List<string> Hobbies = new()
    {
        "Programming",
        "Gaming",
        "Badminton",
        "Tennis",
    };
}