summaryrefslogtreecommitdiffstats
path: root/openecomp-be/api/openecomp-sdc-rest-webapp/vendor-software-products-rest/vendor-software-products-rest-types/src/main/java/org/openecomp/sdcrests/vendorsoftwareproducts/types/ImageDto.java
blob: 7b300222aab81475b8dde721a628f231c103d93c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.openecomp.sdcrests.vendorsoftwareproducts.types;


public class ImageDto extends ImageRequestDto implements CompositionDataEntityDto {
  private String id;

  public String getId() {
    return id;
  }

  public void setId(String id) {
    this.id = id;
  }
}