Initial Commit

This commit is contained in:
Sebastian 2023-09-25 10:54:14 +02:00
parent f1e89b2741
commit 7fa9dbfabc
3 changed files with 16 additions and 0 deletions

View File

View File

@ -0,0 +1,2 @@
package core.services;public class InvalidConfigurationException {
}

View File

@ -0,0 +1,14 @@
package core.services;
import core.api.models.properties.PropertyInfo;
import core.repositories.PropertyRepository;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import java.util.Optional;
public class PropertyService {
}