SpaceNinjaServer/src/types/customTypes.ts

7 lines
129 B
TypeScript
Raw Normal View History

2023-05-19 15:22:48 -03:00
export interface IAccountCreation {
email: string;
password: string;
DisplayName: string;
CountryCode: string;
2023-05-19 15:22:48 -03:00
}