import type { FullAuditedEntityDto, PagedAndSortedResultRequestDto } from '@abp/ng.core'; export interface GetNotesInput extends PagedAndSortedResultRequestDto { filterText?: string; title?: string; content?: string; } export interface NoteCreateDto { title: string; content: string; } export interface NoteDto extends FullAuditedEntityDto { title: string; content: string; } export interface NoteUpdateDto { title: string; content: string; }