Created
August 28, 2020 13:37
-
-
Save rscarrera27/b80e9b01a02c7ac0315b824c99773962 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from dataclasses import dataclass | |
@dataclass | |
class Dto: | |
foo: str | |
clas DtoMapper: | |
def build(foo: str) -> Dto: | |
return Dto(foo) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment