File size: 195 Bytes
d63d035
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
from pydantic import BaseModel
from typing import Optional


class Produccion(BaseModel):
    ID_Produccion: int
    ID_Maquina: int
    Fecha: Optional[str]
    Cantidad_Producida: int