import ICountResponse from "../ICountResponse"; import IPageResponse from "../IPageResponse"; import MGoodSupplier from "../../models/MGoodSupplier"; export default interface IGoodSupplierGetListResponse extends ICountResponse, IPageResponse { GoodSuppliers: Array; }