Reconmap/web-client

View on GitHub
src/models/Contact.ts

Summary

Maintainability
A
0 mins
Test Coverage

interface ContactInterface {

    id?: number;
    kind: string | undefined;
    name?: string;
    email?: string;
    phone?: string;
    role?: string;
}


/**
 * Autogenerated file, do not edit manually. @see https://github.com/reconmap/model-definitions
 */
const Contact : ContactInterface = {

    id: undefined,
    kind: 'general',
    name: undefined,
    email: undefined,
    phone: undefined,
    role: undefined,

}

export default Contact;