I am developing an MVC4 application that communicates to a set of WCF services to retrieve data. I generate service references from the endpoints using svcutil.
The service operations accept a request object and return a response object. Within these object are "entities". For example, a getproduct operation returns a getproductresponse object which has a property called Product which is of type "Product".
Question I have is, the "Product" object, an entity, poco or domain object? I want to create class library that contains all of such objects but not sure what it should be called.