plutoapi-v2/src/models/partyplaner/friendship/Friendship.interface.ts

11 lines
216 B
TypeScript

/**
* Used in the getFriendshipData method as a return value
*/
export interface Friendship {
friendshipId: string;
friendId: string;
friendFirstName: string;
friendLastName: string;
friendUsername: string;
}