import { OfferEnum } from './OfferEnum';
import { TypeEnum } from './TypeEnum';
/** General information about a alldom service */
export interface AllDomService {
    /** Name of the allDom */
    name: string;
    /** Offer of the allDom */
    offer: OfferEnum;
    /** Type of the allDom */
    type: TypeEnum;
}
//# sourceMappingURL=AllDomService.d.ts.map