mirror of
https://gitlab.com/comunic/comunicapiv2
synced 2024-11-25 23:09:22 +00:00
12 lines
169 B
TypeScript
12 lines
169 B
TypeScript
/**
|
|
* New account information
|
|
*
|
|
* @author Pierre HUBERT
|
|
*/
|
|
|
|
export interface NewAccount {
|
|
firstName: string,
|
|
lastName: string,
|
|
email: string,
|
|
password: string
|
|
} |