import type { FullAuditedEntityDto, PagedAndSortedResultRequestDto } from '@abp/ng.core'; export interface EventTypeCreateDto { name: string; description?: string; code?: string; } export interface EventTypeDto extends FullAuditedEntityDto { name: string; description?: string; code?: string; } export interface EventTypeUpdateDto { name: string; description?: string; code?: string; } export interface GetEventTypesInput extends PagedAndSortedResultRequestDto { filterText: string; name?: string; description?: string; code?: string; }