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

org.noear.water.protocol.model.log.LoggerEntity Maven / Gradle / Ivy

There is a newer version: 2.14.2
Show newest version
package org.noear.water.protocol.model.log;

import org.noear.water.model.ConfigM;
import org.noear.water.protocol.LogSource;

/**
 * @author noear 2021/10/24 created
 */
public class LoggerEntity {
    public LogSource source;
    public ConfigM sourceConfig;

    public LoggerEntity(LogSource source, ConfigM sourceConfig) {
        this.source = source;
        this.sourceConfig = sourceConfig;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy