parent
3220c9f4df
commit
4f753a03a8
7 changed files with 41 additions and 30 deletions
@ -1,11 +0,0 @@ |
|||||||
{ |
|
||||||
"free": 2, |
|
||||||
"free_quota": 1, |
|
||||||
"gpt4_supported": 1, |
|
||||||
"more_than_chat": 0.5, |
|
||||||
"login_required": -1, |
|
||||||
"vpn_required": -1, |
|
||||||
"api_key_required": -1, |
|
||||||
"follow_on_wechat_required": -1, |
|
||||||
"community_recommendation": 0.5 |
|
||||||
} |
|
@ -1,6 +0,0 @@ |
|||||||
{ |
|
||||||
"websites": { |
|
||||||
"normal": [], |
|
||||||
"abnormal": [] |
|
||||||
} |
|
||||||
} |
|
@ -0,0 +1,23 @@ |
|||||||
|
package com.lilittlecat.freechatgpt; |
||||||
|
|
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
import java.time.LocalDate; |
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
/** |
||||||
|
* @author <a href="https://github.com/LiLittleCat">LiLittleCat</a> |
||||||
|
* @since 2023/5/16 |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class Website { |
||||||
|
private String url; |
||||||
|
private String title; |
||||||
|
private String description; |
||||||
|
private List<Feature> features; |
||||||
|
private Double score; |
||||||
|
private LocalDate addedDate; |
||||||
|
private LocalDate updatedDate; |
||||||
|
private LocalDate reportedInvalidDate; |
||||||
|
private String labels; |
||||||
|
} |
Loading…
Reference in new issue