io.github.ealenxie.goodcang.assistant.AttachmentFile Maven / Gradle / Ivy
The newest version!
package io.github.ealenxie.goodcang.assistant;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Getter;
import lombok.Setter;
/**
* @author EalenXie created on 2023/6/27 10:22
*/
@Getter
@Setter
public class AttachmentFile {
/**
* 链接
*/
@JsonProperty("url")
private String url;
/**
* 名称
*/
@JsonProperty("name")
private String name;
}