AssignementPair.java 390 B

1234567891011121314151617181920
  1. package fr.jaquin.bdlg.planner.domain;
  2. public class AssignementPair {
  3. public final String slotId;
  4. public final Long volonteerId;
  5. public AssignementPair(String slotId, Long volonteerId) {
  6. this.slotId = slotId;
  7. this.volonteerId = volonteerId;
  8. }
  9. public String getSlotId() {
  10. return this.slotId;
  11. }
  12. public Long getVolonteerId() {
  13. return this.volonteerId;
  14. }
  15. }