document.ts 172 B

123456789
  1. export interface DocumentResponse {
  2. id: number;
  3. code: string;
  4. subject: string;
  5. content: string|null;
  6. isActive: boolean;
  7. updatedAt: string|null;
  8. createdAt: string;
  9. }