Skip to content

Commit

Permalink
remove unused the import, add constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
kitdim committed Feb 8, 2024
1 parent e4def2d commit 4107e6f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions app/src/main/java/hexlet/code/dto/UrlsPage.java
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
package hexlet.code.dto;

import hexlet.code.model.UrlCheck;
import lombok.AllArgsConstructor;
import lombok.Getter;
import hexlet.code.model.Url;

import java.util.List;
import java.util.Map;

@Getter
@AllArgsConstructor
public class UrlsPage extends BasePage {
private List<Url> urls;
private Map<Long, UrlCheck> checks;
public UrlsPage(List<Url> urls) {
this.urls = urls;
}
}

0 comments on commit 4107e6f

Please sign in to comment.