Exclude a database property from the DTO.
Use when a database property should NOT appear in this DTO:
id
created_at
password
salt
refresh_token
Samchon
Database property name (column or relation) to exclude from this DTO.
Explanation of why this database property is excluded.
Exclude a database property from the DTO.
Use when a database property should NOT appear in this DTO:
id,created_atexcluded from Create DTOid,created_atexcluded from Update DTOpassword,salt,refresh_tokenexcluded from Read DTOAuthor
Samchon