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

org.teasoft.beex.config.BeeProProfiles Maven / Gradle / Ivy

There is a newer version: 2.4.0
Show newest version
/*
 * Copyright 2016-2022 the original author.All rights reserved.
 * Kingstar([email protected])
 * The license,see the LICENSE file.
 */

package org.teasoft.beex.config;

/**
 * BeeProProfiles
 * @author Kingstar
 * @since 1.11
 */
public class BeeProProfiles {

	private Integer type;
	private String active;

	public Integer getType() {
		return type;
	}

	public void setType(Integer type) {
		this.type = type;
	}

	public String getActive() {
		return active;
	}

	public void setActive(String active) {
		this.active = active;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy