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