diff --git a/src/app/contact/contact-form.ts b/src/app/contact/contact-form.ts new file mode 100644 index 0000000..040cd57 --- /dev/null +++ b/src/app/contact/contact-form.ts @@ -0,0 +1,9 @@ +export class ContactForm { + name: string = ''; + surname: string = ''; + email: string = ''; + affiliation: string = ''; + community: string = ''; + message: string = ''; + recaptcha: boolean = false; +}