Initialization of classes without any constructor in C#

var nokiaPhone = new Phone{Model = "Nokia 6610"};

var kim = new Employee {
    FirstName = "Victorya",
    LastName = "Kim",
    PersonalPhone = new Phone{Model = "iPhone 5"}
};

class Phone {
    public string Model { getset; }
}

class Employee {
    public string FirstName { getset; }
    public string LastName { getset; }
    public Phone PersonalPhone { getset; }
}