app.tozzi.uudecoder.model.UUDecodedBean Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of uudecoder Show documentation
Show all versions of uudecoder Show documentation
Utility for decoding uuencoded contents
The newest version!
package app.tozzi.uudecoder.model;
import java.util.ArrayList;
import java.util.List;
import app.tozzi.uudecoder.UUDecoder.UUDecodedAttachment;
import lombok.Data;
/**
*
* @author biagio.tozzi
*
*/
@Data
public class UUDecodedBean {
private String content;
private List attachments = new ArrayList<>();
}