Add FoxCommand

This commit is contained in:
2024-06-27 21:04:21 -05:00
parent 9a1d011ff2
commit 409e71a0aa
2 changed files with 57 additions and 0 deletions

View File

@ -0,0 +1,21 @@
package cc.fascinated.bat.model.token.randomfox;
import lombok.AllArgsConstructor;
import lombok.Getter;
/**
* @author Nick (okNick)
*/
@Getter
@AllArgsConstructor
public class RandomFoxToken {
/**
* The URL of the raw image.
*/
private String image;
/**
* The link of the image + other web info.
*/
private String link;
}