14 lines
279 B
TypeScript
14 lines
279 B
TypeScript
import type { EntityDto } from '@abp/ng.core';
|
|
|
|
export interface BookIssueDto extends EntityDto<string> {
|
|
bookId: string;
|
|
customerId: string;
|
|
}
|
|
|
|
export interface BookIssueListDto {
|
|
bookIssueId?: string;
|
|
bookName?: string;
|
|
customerName?: string;
|
|
issueDate?: string;
|
|
}
|