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,10 @@
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 = "keepmealive") @ToString public class HeartBeatInfos {
@Attribute @Getter private int status;
}