---
url: /api/security/passport/types/domain/class-user-info.md
description: api documentation of UserInfo from @tsed/passport
---

## Usage

```typescript
import { UserInfo } from "@tsed/passport";
```

> See [/packages/security/passport/src/domain/UserInfo.ts](https://github.com/tsedio/tsed/blob/v8.38.4/packages/security/passport/src/domain/UserInfo.ts#L0-L0).

## Overview

```ts
class UserInfo {
    id: string;
    email: string;
    password: string;
}
```

## id

```ts
id: string;
```

## email

```ts
email: string;
```

## password

```ts
password: string;
```
