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

ca.derekcormier.recipe.Payload Maven / Gradle / Ivy

There is a newer version: 0.4.0
Show newest version
package ca.derekcormier.recipe;

public class Payload {
    private Recipe recipe;
    private Cake cake;

    public Payload(Recipe recipe, Cake cake) {
        this.recipe = recipe;
        this.cake = cake;
    }

    public Ingredient getRecipe() {
        return recipe;
    }

    public Cake getCake() {
        return cake;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy