Reputation: 34527
I need to come up with a naming scheme for the situation where some objects will exist in two versions. Let's say server side has File and Directory objects and it passes a lightweight version of these to the client side. The names LightweightFile and LightweightDirectory are obviously too long and clunky. What's a good word to use instead of lightweight here?
Upvotes: 3
Views: 447
Reputation: 15474
We have been using "Data Transfer Objects" shortened to DTO. It's a little wordy and requires the abbreviation though (which is why I found this question).
Upvotes: 1
Reputation: 403481
Lightweight client-side representations of server-side objects are often called Stub
or Proxy
.
Upvotes: 2