[SDC] Onboarding 1710 rebase.
[sdc.git] / openecomp-be / api / openecomp-sdc-rest-webapp / vendor-software-products-rest / vendor-software-products-rest-types / src / main / java / org / openecomp / sdcrests / vendorsoftwareproducts / types / DeploymentFlavorListResponseDto.java
1 package org.openecomp.sdcrests.vendorsoftwareproducts.types;
2
3
4 public class DeploymentFlavorListResponseDto {
5   public String getModel() {
6     return model;
7   }
8
9   public void setModel(String model) {
10     this.model = model;
11   }
12
13   private String model;
14
15   public String getDescription() {
16     return description;
17   }
18
19   public void setDescription(String description) {
20     this.description = description;
21   }
22
23   private String description;
24
25   public String getId() {
26     return id;
27   }
28
29   public void setId(String id) {
30     this.id = id;
31   }
32
33   private String id;
34 }