from pydantic import BaseModel class DetalleVentas(BaseModel): ID_Venta: int ID_Producto: int Cantidad: int Precio_Unitario: float