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

io.magentys.gherkin.model.Match Maven / Gradle / Ivy


package io.magentys.gherkin.model;

import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;

public class Match {

    @SerializedName("location")
    @Expose
    private String location;

    public Match(String location) {
        this.location = location;
    }

    public String getLocation() {
        return location;
    }

    public void setLocation(String location) {
        this.location = location;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy