Coverage for backend \ app \ Usuarios \ schemas \ rolSchemas.py: 100.00%

6 statements  

« prev     ^ index     » next       coverage.py v7.13.0, created at 2025-12-29 16:13 -0500

1from pydantic import BaseModel 

2 

3class RolSchema(BaseModel): 

4 idRol: int 

5 nombreRol: str 

6 

7 class Config: 

8 from_attributes = True