| 1234567891011121314151617181920 |
- package fr.jaquin.bdlg.planner.domain;
- public class AssignementPair {
- public final String slotId;
- public final Long volonteerId;
- public AssignementPair(String slotId, Long volonteerId) {
- this.slotId = slotId;
- this.volonteerId = volonteerId;
- }
- public String getSlotId() {
- return this.slotId;
- }
- public Long getVolonteerId() {
- return this.volonteerId;
- }
- }
|