GrokConversationCountResponse.java 288 B

1234567891011121314151617181920
  1. package com.cyksj.model.response;
  2. import lombok.Data;
  3. /**
  4. * Grok conversation count response.
  5. */
  6. @Data
  7. public class GrokConversationCountResponse {
  8. private Long count;
  9. private Integer limit;
  10. private Long remaining;
  11. private Long time;
  12. private Boolean isVip;
  13. }