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

com.chutneytesting.agent.api.dto.TargetIdEntity Maven / Gradle / Ivy

/*
 * SPDX-FileCopyrightText: 2017-2024 Enedis
 *
 * SPDX-License-Identifier: Apache-2.0
 *
 */

package com.chutneytesting.agent.api.dto;

public class TargetIdEntity {
    public final String name;
    public final String environment;

    public TargetIdEntity(String name, String environment) {
        this.name = name;
        this.environment = environment;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy