# Note

The `Note` interface defines a structure to store extra information in a [DrawingItem](https://www.dynamsoft.com/camera-enhancer/docs/web/programming/javascript/api-reference/drawingitem.md). A `DrawingItem` can have one or multiple `Notes`.

```ts
interface Note {
  /** The name of the note. */
  name: string;
  /** The content of the note, can be of any type. */
  content: any;
}
```

## name

The name of the note.

## content

The content of the note, can be of any type.
