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

com.github.krenfro.eztexting.EzTextingCredentials Maven / Gradle / Ivy

package com.github.krenfro.eztexting;

public class EzTextingCredentials {

    private final String username;
    private final String password;

    public EzTextingCredentials(String username, String password){
        this.username = username;
        this.password = password;
    }
        
    public String getUsername(){
        return username;
    }

    public String getPassword(){
        return password;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy