Skip to content

Commit

Permalink
style: fix linter issues
Browse files Browse the repository at this point in the history
  • Loading branch information
gunjyo0817 committed Feb 10, 2025
1 parent bef6ea0 commit 07c857d
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,22 @@
@Builder
public class InternalIssueResponse {
@JsonProperty("issue_id")
UUID issueId;
private UUID issueId;

@JsonProperty("created_at")
LocalDateTime createdAt;
private LocalDateTime createdAt;

@JsonProperty("updated_at")
LocalDateTime updatedAt;
private LocalDateTime updatedAt;

String title;
private String title;

@JsonProperty("publisher_id")
UUID authorId;
private UUID authorId;

@JsonProperty("view_count")
int viewCount;
private int viewCount;

@JsonProperty("viewpoint_count")
int viewpointCount;
private int viewpointCount;
}

0 comments on commit 07c857d

Please sign in to comment.