Skip to content

Commit

Permalink
Merge pull request #47 from KPMP/KPMP-4847_add_slide_removed_field
Browse files Browse the repository at this point in the history
KPMP-4847: add "removed" field for slides
  • Loading branch information
rlreamy authored Jul 30, 2024
2 parents 55ae921 + de8279a commit fbd3c00
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/main/java/org/kpmp/slides/Slide.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ public class Slide {
@Field("stain")
private Stain stain;

@Field("removed")
private boolean removed;

public Stain getStain() {
return stain;
}
Expand Down Expand Up @@ -60,4 +63,12 @@ public void setSlideType(String slideType) {
this.slideType = slideType;
}

public boolean getRemoved() {
return removed;
}

public void setRemoved(boolean removed) {
this.removed = removed;
}

}

0 comments on commit fbd3c00

Please sign in to comment.