import type { FullAuditedEntityDto, PagedAndSortedResultRequestDto } from '@abp/ng.core'; import type { IdentityUserDto } from '../volo/abp/identity/models'; export interface GetVfTaskCommentListInput extends PagedAndSortedResultRequestDto { filterText?: string; vfTaskId: string; } export interface GetVfTaskCommentsInput extends PagedAndSortedResultRequestDto { filterText?: string; comment?: string; identityUserId?: string; vfTaskId: string; } export interface VfTaskCommentCreateDto { comment: string; identityUserId?: string; } export interface VfTaskCommentDto extends FullAuditedEntityDto { comment: string; identityUserId?: string; } export interface VfTaskCommentUpdateDto { comment: string; identityUserId?: string; } export interface VfTaskCommentWithNavigationPropertiesDto { vfTaskComment: VfTaskCommentDto; identityUser: IdentityUserDto; }