Token DTO

This commit is contained in:
tim
2025-09-25 13:32:06 -04:00
parent ebce35c972
commit 21f0f986d2

View File

@@ -0,0 +1,12 @@
package stream.dto;
import java.io.Serial;
public class Token extends AddressId {
@Serial
private static final long serialVersionUID = 1L;
String name;
String symbol;
int decimals;
}