Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save gdonega/7006bde82a9ba1d48b8c00b6b5b98b3a to your computer and use it in GitHub Desktop.
Save gdonega/7006bde82a9ba1d48b8c00b6b5b98b3a to your computer and use it in GitHub Desktop.
package com.testes.spring.exemplo.empresas.dtos;
public class MunicipioGroupDto {
private String id;
private Long count;
public MunicipioGroupDto() {
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public Long getCount() {
return count;
}
public void setCount(Long count) {
this.count = count;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment