Move src files to standard java folder structure

This commit is contained in:
Grische
2022-04-10 13:15:34 +00:00
committed by harlekin
parent 1e89734609
commit 78da2832af
82 changed files with 0 additions and 17 deletions

View File

@@ -0,0 +1,19 @@
package com.sheepit.client.datamodel;
import lombok.Getter;
import lombok.ToString;
import org.simpleframework.xml.Attribute;
import org.simpleframework.xml.Root;
@Root(strict = false, name = "renderer") @ToString public class RendererInfos {
@Attribute(name = "md5") @Getter private String md5;
@Attribute(name = "commandline") @Getter private String commandline;
@Attribute(name = "update_method") @Getter private String update_method;
public RendererInfos() {
}
}