9 lines
179 B
TypeScript
9 lines
179 B
TypeScript
export type CreateSelfServiceCitizenRunner = {
|
|
email?: string;
|
|
firstname: string;
|
|
middlename?: string;
|
|
lastname: string;
|
|
phone?: string;
|
|
address?: any;
|
|
};
|