Johannes Theiner c9785a5f32 ~ cleanup
Signed-off-by: Johannes Theiner <j.theiner@live.de>
2019-05-01 16:34:12 +02:00

20 lines
302 B
Java

package de.hsel.itech.config;
import lombok.EqualsAndHashCode;
import lombok.Getter;
import lombok.ToString;
/**
* @author Johannes Theiner
* @version 0.1
* @since 0.1
**/
@Getter
@ToString
@EqualsAndHashCode
public class Unsplash {
private String accessKey;
private String secretKey;
}