import Type from "./Type";
interface Property {
    name: string;
    type: Type;
}
export default Property;
