import ICountResponse from "../ICountResponse"; import IPageResponse from "../IPageResponse"; import MSetMeal from "../../models/MSetMeal"; export default interface ISetMealGetListResponse extends ICountResponse, IPageResponse { SetMeals: Array; }