mirror of
https://github.com/carlrobertoh/ProxyAI.git
synced 2026-05-12 14:10:29 +00:00
7 lines
232 B
Java
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) {
|
|
}
|