You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mohemm_srca/Mohem/src/app/notification/models/PONotificationBodyList.ts

9 lines
358 B
TypeScript

6 years ago
import { Response } from "./response";
import { PoHeaderNotificationBodyItems } from "./PoHeaderNotificationBodyItems";
import { PoLinesNotificationBodyItems } from "./PoLinesNotificationBodyItems";
export class PONotificatonBodyList extends Response {
public POHeader: PoHeaderNotificationBodyItems[];
public POLines: PoLinesNotificationBodyItems[];
}