Files
GestionIntegralWeb/Frontend/src/models/Entities/Empresa.ts

5 lines
87 B
TypeScript

export interface Empresa {
idEmpresa: number;
nombre: string;
detalle?: string;
}