
com.aventstack.chaintest.domain.SystemInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of chaintest-core Show documentation
Show all versions of chaintest-core Show documentation
Core Java client library for ChainTest framework
The newest version!
package com.aventstack.chaintest.domain;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.Data;
@JsonIgnoreProperties(ignoreUnknown = true)
@Data
public class SystemInfo {
private long id;
private String name;
private String val;
public SystemInfo() { }
public SystemInfo(final String name, final String val) {
this.name = name;
this.val = val;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy