|
|
|
|
@ -12,7 +12,10 @@ import java.util.Set;
|
|
|
|
|
@Schema(description = "프로젝트 사용자 권한 요청 DTO")
|
|
|
|
|
public class UserPermissionRequest {
|
|
|
|
|
|
|
|
|
|
@Schema(description = "권한을 부여할 사용자 ID", example = "5")
|
|
|
|
|
@Schema(description = "프로젝트 ID", example = "1")
|
|
|
|
|
private Long projectId;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "권한을 부여할 사용자 ID", example = "1")
|
|
|
|
|
private Long userId;
|
|
|
|
|
|
|
|
|
|
@Schema(description = "권한 목록", example = "[\"CREATE\", \"READ\", \"UPDATE\", \"DELETE\"]")
|
|
|
|
|
|