Strictly speaking, the DTO (Data Transfer Object) pattern was originally created for serializing and transmitting objects. But since then, DTOs have proven useful for things like commands, parameter objects, events, and as intermediary objects when mapping between different contexts (e.g. importing rows from an Excel worksheet).
One consequence of this widespread use is that, now days, naming a class SomeSortOfDto doesn’t tell me much about what the object is for — only that the object carries data, and has no behaviour.
Here’s a few suggestions for better names that might help indicate its purpose:
- SomeSortOfQueryResult
- SomeSortOfQueryParameter
- SomeSortOfCommand
- SomeSortOfConfigItem
- SomeSortOfSpecification
- SomeSortOfRow
- SomeSortOfItem (for a collection)
- SomeSortOfEvent
- SomeSortOfElement
- SomeSortOfMessage
By no means this is a definitive list — it’s just a few examples I can remember using off the top of my head right now. But you get the general idea — try not to call your objects as just DTOs, but give them names that describe their purpose too.