Hi,
I have a model object called Country
:
class Country
{
public string Name { get; set; }
public string Code { get; set; }
public Region[] Regions {get;set;}
public URI[] Uris {get;set;}
}
and via WebService I want get this Country in few versions:
- only Name and Code
- every field
- every filed without Uris
- every field without collection of Regions
What names gives to them ?
- CountryNameWithCode
- CountryWithoutUris
- Country
- CountryWithoutRegions ?
This is for a client in Britain. Sorry for my poor English.