Skip to content

Commit

Permalink
fixes my stupidity over apis. now has paths and a formed input object.
Browse files Browse the repository at this point in the history
  • Loading branch information
alan-stokes committed Feb 19, 2025
1 parent 57ad088 commit 1a658c3
Showing 1 changed file with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package org.orph2020.pst.common.json;

import java.util.HashMap;

public class OpticalTelescopeData {
public String proposalID;
public String observationID;
public String telescopeName;
HashMap<String, String> choices;

public OpticalTelescopeData(
String proposalID, String observationID, String telescopeName,
HashMap<String, String> choices) {
this.proposalID = proposalID;
this.observationID = observationID;
this.telescopeName = telescopeName;
this.choices = choices;
}
}

0 comments on commit 1a658c3

Please sign in to comment.