All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.global.api.entities.propay.DeviceData Maven / Gradle / Ivy

There is a newer version: 14.2.3
Show newest version
package com.global.api.entities.propay;

import lombok.Getter;
import lombok.Setter;

import java.util.ArrayList;
import java.util.List;
@Getter
@Setter
public class DeviceData {

    /** List of information about the device like name,quantity,etc */
    private List devices;

    public DeviceData() {
        devices=new ArrayList<>();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy