ProxyAI/src/main/java/ee/carlrobert/codegpt/completions/you/YouSubscription.java
Rene Leonhardt 7d89650062
chore: Improve code (#442)
* chore: Improve code

* Convert classes to records
2024-04-10 14:47:38 +03:00

7 lines
232 B
Java

package ee.carlrobert.codegpt.completions.you;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
@JsonIgnoreProperties(ignoreUnknown = true)
public record YouSubscription(String service, String tier, String month) {
}