adding dto

This commit is contained in:
2025-12-24 10:02:46 +00:00
parent 59a274567d
commit ce69b4ff6c
2 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
package com.abnov.infisicalbridge.dto;
public record InfisicalWebhookEventResponse(
String event,
ProjectResponse project,
long timestamp) {
}

View File

@@ -0,0 +1,10 @@
package com.abnov.infisicalbridge.dto;
public record ProjectResponse(
String workspaceId,
String projectId,
String projectName,
String environment,
String secretPath) {
}