Delete AppProperties.java

This commit is contained in:
Aarthi Manivannan, Premanathan Aarthi Manivannan
2025-12-14 18:02:13 +01:00
parent 55555bcc37
commit 3bbd82eddc
@@ -1,13 +0,0 @@
package com.v2d.document.config;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.context.annotation.Configuration;
@Configuration
@ConfigurationProperties(prefix = "app.external")
public class AppProperties {
private String apiKey;
public String getApiKey() { return apiKey; }
public void setApiKey(String apiKey) { this.apiKey = apiKey; }
}