import ICountResponse from "../ICountResponse"; import IPageResponse from "../IPageResponse"; import MGoodBrand from "../../models/MGoodBrand"; export default interface IGoodBrandGetListResponse extends ICountResponse, IPageResponse { GoodBrands: Array; }