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

io.smilego.tenant.presentation.dto.TenantDto Maven / Gradle / Ivy

package io.smilego.tenant.presentation.dto;

import com.fasterxml.jackson.databind.annotation.JsonSerialize;

import java.io.Serializable;

@JsonSerialize
public class TenantDto implements Serializable {

    private static final long serialVersionUID = -7322863734527780373L;
    
    private String tenantId;

    public TenantDto(){

    }

    public TenantDto(String tenantId){
        this.tenantId = tenantId;
    }

    public String getTenantId() {
        return tenantId;
    }

    public void setTenantId(String tenantId) {
        this.tenantId = tenantId;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy