Implement contact form on server side
[oweals/peertube.git] / shared / models / server / contact-form.model.ts
1 export interface ContactForm {
2   fromEmail: string
3   fromName: string
4   body: string
5 }