org.octopusden.employee.config.EmployeeServiceProperties.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of employee-service Show documentation
Show all versions of employee-service Show documentation
Octopus module: employee-service
The newest version!
package org.octopusden.employee.config
import org.springframework.boot.context.properties.ConfigurationProperties
import org.springframework.boot.context.properties.ConstructorBinding
@ConfigurationProperties("employee-service")
@ConstructorBinding
data class EmployeeServiceProperties(val workDayHours: Int, val userAvailability: UserAvailability) {
data class UserAvailability (val jql: String)
}