public BreedSummaryResponse(DogBreed model)
 {
     CopyProperties(model, this, new List <string>()
     {
         "Group"
     });
     Group = new BreedGroupResponse(model.Group);
 }
 public BreedGroupResponse(BreedGroupResponse other)
 {
     CopyProperties(other, this);
 }