contact-form.model.ts 87 B

12345
  1. export interface ContactForm {
  2. fromEmail: string
  3. fromName: string
  4. body: string
  5. }