bitcitawebfront-library
Version:
Angular CLI project used by other Angular projects in the bitcita web project.<br />
14 lines (13 loc) • 493 B
TypeScript
export declare class ServicioCampo {
campoId: number;
servicioId: number;
nombre: string;
checkForm: string;
listaValores: string;
obligatorio: boolean;
valor: string;
listaValoresValue: [];
listaValoresLabel: [];
label: string;
constructor(campoId: number, servicioId: number, nombre: string, checkForm: string, listaValores: string, obligatorio: boolean, valor: string, listaValoresValue: [], listaValoresLabel: [], label: string);
}