/**
 * Aplicação
 * Serviço do backend da aplicação do Ronda senior X
 *
 *
 * Contact: seniorx-dev@senior.com.br
 *
 * NOTE: This class is auto generated by the swagger code generator program.
 * https://github.com/swagger-api/swagger-codegen.git
 * Do not edit the class manually.
 */
import { ExtensibleConfiguration } from './extensibleConfiguration';
export interface ExtensibleProperty {
    /**
     *
     */
    createdDate?: Date;
    extensibleConfiguration?: ExtensibleConfiguration;
    /**
     *
     */
    createdBy?: string;
    /**
     *
     */
    lastModifiedDate?: Date;
    /**
     *
     */
    lastModifiedBy?: string;
    /**
     * ID
     */
    id?: number;
    /**
     * Valor
     */
    value: string;
    /**
     * Chave
     */
    key: string;
}
