Skip to content

Commit 22f9c30

Browse files
committed
feat: dto 정의
1 parent 1f86448 commit 22f9c30

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
package org.layer.admin.space.controller.dto;
2+
3+
public record SpaceAbandonRate(
4+
double averageAbandonRate
5+
) {
6+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
package org.layer.admin.space.repository.dto;
2+
3+
public record ProceedingSpaceDto(
4+
Long spaceId,
5+
Long memberCount
6+
) {
7+
public ProceedingSpaceDto(Long spaceId, Long memberCount) {
8+
this.spaceId = spaceId;
9+
this.memberCount = memberCount;
10+
}
11+
}

0 commit comments

Comments
 (0)