import ICountResponse from "../ICountResponse"; import IPageResponse from "../IPageResponse"; import MGood from "../../models/MGood"; export default interface IGoodGetListResponse extends ICountResponse, IPageResponse { Goods: Array; }