export class UserResultDto { success: boolean; id: number; constructor(id: number) { this.success = true; this.id = id; } }