1
0
mirror of https://gitlab.com/comunic/comunicapiv2 synced 2024-11-25 23:09:22 +00:00
comunicapiv2/src/entities/NewAccount.ts

12 lines
169 B
TypeScript
Raw Normal View History

2019-12-30 12:44:54 +00:00
/**
* New account information
*
* @author Pierre HUBERT
*/
export interface NewAccount {
firstName: string,
lastName: string,
email: string,
password: string
}