plutoapi-v2/src/models/partyplaner/user/UserData.interface.ts

13 lines
232 B
TypeScript

/**
* Used in the getUserData method as return value
*/
export interface UserData {
username: string;
email: string;
firstName: string;
lastName: string;
lastLogin: string;
emailIsVerified: string;
isPremiumUser: string;
}