var ContactForm = /** @class */ (function () {
    function ContactForm(name, email, telephone, description) {
        this.Name = name || null;
        this.Email = email || null;
        this.Telephone = telephone || null;
        this.Description = description || null;
    }
    return ContactForm;
}());
//# sourceMappingURL=ContactForm.js.map