Files
tp1-progpro/src/utils/ReceiptDecorator.java
Namu 3479d5dcee
Some checks failed
SonarQube Scan / SonarQube Trigger (push) Failing after 20s
first commit
2025-09-23 13:14:23 +02:00

18 lines
297 B
Java

package utils;
public class ReceiptDecorator {
boolean received;
public ReceiptDecorator() {
this.received = false;
}
public boolean isReceived() {
return received;
}
public void setReceived(boolean received) {
this.received = received;
}
}