import type { EntityDto } from '@abp/ng.core'; export interface BookIssueDto extends EntityDto { bookId: string; customerId: string; } export interface BookIssueListDto { bookIssueId?: string; bookName?: string; customerName?: string; issueDate?: string; }