Skip to content
Snippets Groups Projects
formData.ts 219 B
export type RegisterFormData = {
  first_name?: string
  last_name?: string
  role_type?: string
  role_start: Date
  role_end: Date
  contact_person_unit?: string
  comment?: string
  ou_id?: number
  email?: string
}