export interface UserRegistrationRequest {
    token: string;
    name: string;
    surname: string;
    password: string;
}
