Add Device
This commit is contained in:
parent
e76a53bbde
commit
b35968b5c6
17
src/main/java/com/banesco/common/domain/model/Device.java
Normal file
17
src/main/java/com/banesco/common/domain/model/Device.java
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
package com.banesco.common.domain.model;
|
||||||
|
|
||||||
|
import io.quarkus.runtime.annotations.RegisterForReflection;
|
||||||
|
import lombok.*;
|
||||||
|
|
||||||
|
@Getter
|
||||||
|
@ToString
|
||||||
|
@Builder
|
||||||
|
@NoArgsConstructor
|
||||||
|
@AllArgsConstructor
|
||||||
|
@RegisterForReflection
|
||||||
|
public class Device {
|
||||||
|
private String deviceType;
|
||||||
|
private String deviceDescription;
|
||||||
|
private String deviceIp;
|
||||||
|
private String deviceSessionReference;
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user