All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.octopusden.employee.config.EmployeeServiceProperties.kt Maven / Gradle / Ivy

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)

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy