import { OfferEnum } from '../domain/OfferEnum';
import { TypeEnum } from './TypeEnum';
/** AllDom administration */
export interface AllDom {
    /** Name of the allDom */
    name: string;
    /** Offer of the allDom */
    offer: OfferEnum;
    /** Type of the allDom */
    type: TypeEnum;
}
//# sourceMappingURL=AllDom.d.ts.map