I am returning data from different domain repositories to my service and from the service to my Asp.net WebApi controller to the client. The data is put into a DTO.
Should I use the same DTO to transfer the data from the client to server although I would have to add some properties which are not used from server to client.
Is that approach ok or should I use different DTO`s ?