Created
March 13, 2020 01:49
-
-
Save gdonega/7006bde82a9ba1d48b8c00b6b5b98b3a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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