GoalResponse.java

package com.distasilucas.cryptobalancetracker.model.response.goal;

import java.io.Serializable;

public record GoalResponse(
    String id,
    String cryptoName,
    String actualQuantity,
    float progress,
    String remainingQuantity,
    String goalQuantity,
    String moneyNeeded
) implements Serializable {
}