package com.qianwen.core.notify.provider.dingtalk; import javax.validation.constraints.NotBlank; /* loaded from: blade-starter-notify-9.3.0.0-SNAPSHOT.jar:org/springblade/core/notify/provider/dingtalk/DingTalkProperties.class */ public class DingTalkProperties { @NotBlank(message = "appKey不能为空") private String appKey; @NotBlank(message = "appSecret不能为空") private String appSecret; public void setAppKey(final String appKey) { this.appKey = appKey; } public void setAppSecret(final String appSecret) { this.appSecret = appSecret; } public String getAppKey() { return this.appKey; } public String getAppSecret() { return this.appSecret; } }