# BoardCardData

**Kind:** Interface

**Source:** [`atloria-monorepo/apps/web/src/components/Boards/helpers.ts`](https://github.com/sherkety/atloria/blob/main/atloria-monorepo/apps/web/src/components/Boards/helpers.ts#L86)

## Properties

| Property | Type |
|---|---|
| `id` | `string` |
| `position` | `number` |
| `columnId` | `string` |
| `issue` | `{
    id: string;
    ticketNumber: number;
    status: string;
    priority: string;
    category: string;
    ticketType?: string;
    description: string;
    pageTitle: string | null;
    pageUrl: string | null;
    assignee: { id: string; name: string | null; email: string } | null;
    createdAt: string;
    updatedAt: string;
    _count?: { comments: number };
  }` |
