[Trunk|Library]: Move contact-form to library

git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app@55301 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
k.triantafyllou 2019-04-12 10:18:00 +00:00
parent c156ac3b8f
commit ba5b4438e2
2 changed files with 10 additions and 1 deletions

View File

@ -1,6 +1,6 @@
import {Email} from "./email";
import {Body} from "./body";
import {ContactForm} from "../../../contact/contact-form";
import {ContactForm} from "./contact-form";
export class Composer {
private static noteBodySize = "14px";

View File

@ -0,0 +1,9 @@
export class ContactForm {
name: string = '';
surname: string = '';
email: string = '';
affiliation: string = '';
community: string = '';
message: string = '';
recaptcha: string = null;
}