mirror of
https://github.com/arsvendg/Stirling-PDF.git
synced 2026-03-16 21:12:06 +01:00
14 lines
261 B
Java
14 lines
261 B
Java
package stirling.software.SPDF.model;
|
|
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
public class Dependency {
|
|
private String moduleName;
|
|
private String moduleUrl;
|
|
private String moduleVersion;
|
|
private String moduleLicense;
|
|
private String moduleLicenseUrl;
|
|
|
|
}
|