d63d035
1
2
3
4
5
6
7
8
9
10
11
from pydantic import BaseModel from typing import Optional class Empleados(BaseModel): ID_Empleado: int Nombre: str Apellido: str Sueldo: float Fecha_Inicio: Optional[str]