/** * A first attempt at a class for storing and distributing * key information about a charity * * @author ggtowell * Created: Nov 2023 */ public class Charity1 { public String name; public int donationTarget; public int donationsReceived; }