import MProduct from "../../models/MProduct"; import ICountResponse from "../ICountResponse"; import IPageResponse from "../IPageResponse"; export default interface IGetGoodProductResponse extends ICountResponse, IPageResponse { Products: Array; }