supadantic icon indicating copy to clipboard operation
supadantic copied to clipboard

Related objects support

Open makridenko opened this issue 10 months ago • 0 comments

Need to describe.

class User(BaseDBEntity):
    pass

class UserSettings(BaseDBEntity):
    user: User

user = User()
user_settings = UserSettings(user=user)

makridenko avatar Apr 21 '24 07:04 makridenko