aboutsummaryrefslogtreecommitdiffstats
path: root/openecomp-be/api/openecomp-sdc-rest-webapp/vendor-license-rest/vendor-license-rest-services/src/main/java/org/openecomp/sdcrests/vendorlicense/rest/mapping/LimitCreationDto.java
blob: da7852da2ce8fcd2fc683db06a364336b44492df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package org.openecomp.sdcrests.vendorlicense.rest.mapping;

public class LimitCreationDto {
  private String limitId;

  public String getLimitId() {
    return limitId;
  }

  public void setLimitId(String limitId) {
    this.limitId = limitId;
  }
}