# DocumentTemplate

**Kind:** Interface

**Source:** [`atloria-monorepo/packages/types/src/models/template.ts`](https://github.com/sherkety/atloria/blob/main/atloria-monorepo/packages/types/src/models/template.ts#L12)

DocumentTemplate represents a document template in the system

## Properties

| Property | Type |
|---|---|
| `id` | `string` |
| `name` | `string` |
| `description` | `string | null` |
| `category` | `TemplateCategory` |
| `content` | `string` |
| `thumbnail` | `string | null` |
| `metadata` | `Record<string, unknown> | null` |
| `defaultType` | `DocumentType` |
| `defaultAudiences` | `Audience[]` |
| `isPublic` | `boolean` |
| `organizationId` | `string | null` |
| `useCount` | `number` |
| `createdAt` | `Date | string` |
| `updatedAt` | `Date | string` |
| `createdById` | `string` |
| `createdBy` | `User` |
