package kr.itn.itnhub.config;

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.context.properties.bind.DefaultValue;

@ConfigurationProperties(prefix = "mattermost")
public record MattermostProperties(
        String baseUrl,
        String token,
        String teamId,
        @DefaultValue("문정원") String channelNameMj,
        @DefaultValue("법률검토") String channelNameLaw,
        @DefaultValue("itn-hub") String teamName,
        @DefaultValue("test1234!") String defaultUserPassword) {
}
