Blog
using AspDotNetMvc;
using AspDotNetWebforms;
using CSharp;
using Css;
using Html;
using JavaScript;

namespace JoeyCodes.Com
{
    public class ApplicationDeveloper
    {
        public string Name { get; private set; }
        public string Email { get; private set; }
        public string PhoneNumber { get; private set; }

        public ApplicationDeveloper()
        {
            this.Name = "Joey Green";
            this.Email = "joeygreen@gmail.com";
            this.PhoneNumber = "407-409-2083";
        }
    }
}