added bookmarked to scan history
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
package com.safeqr.app.user.dto;
|
||||
|
||||
import com.safeqr.app.qrcode.entity.QRCodeEntity;
|
||||
import lombok.Builder;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
@Builder
|
||||
public class ScannedHistoriesDto {
|
||||
|
||||
private QRCodeEntity data;
|
||||
private boolean bookmarked;
|
||||
|
||||
public ScannedHistoriesDto(QRCodeEntity qrCodeEntity, boolean bookmarked) {
|
||||
this.data = qrCodeEntity;
|
||||
this.bookmarked = bookmarked;
|
||||
}
|
||||
}
|
||||
@@ -1,4 +0,0 @@
|
||||
package com.safeqr.app.user.dto;
|
||||
|
||||
public class ScannedHistoriesResponse {
|
||||
}
|
||||
Reference in New Issue
Block a user