import EntityBase from "./EntityBase"; import MBusiness from "./MBusiness"; import MPicture from "./MPicture"; export default class MMarket extends EntityBase { BindBusiness?: MBusiness; Name?: string; Group?: string; Description?: string; ManageUrl?: string; HelperUrl?: string; IsEnabled?: boolean; Version?: number; BindPicture?: MPicture; }