10 lines
168 B
Python
10 lines
168 B
Python
from typing import TypedDict
|
|
|
|
class Commune(TypedDict):
|
|
codeInsee: str
|
|
nom: str
|
|
codeZip: str
|
|
|
|
class FantoirVoie(TypedDict):
|
|
libelle: str
|
|
rivoli_with_key: int
|