Skip to content

Commit

Permalink
Added Organization class
Browse files Browse the repository at this point in the history
Added class to store values from scraped organizations.
  • Loading branch information
roaraf committed Feb 24, 2026
1 parent 4d145ae commit bf7327e
Showing 1 changed file with 32 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
package ntnu.sytemutvikling.team6.models;

public class Organization {
String name;
String telephone;
String location;
String status;

public Organization(String name, String telephone, String location, String status) {
this.name = name;
this.telephone = telephone;
this.location = location;
this.status = status;
}

public String getName() {
return this.name;
}

public String getTelephone() {
return this.telephone;
}

public String getLocation() {
return this.location;
}

public String getStatus() {
return this.status;
}

}

0 comments on commit bf7327e

Please sign in to comment.