Commit dd0b9f03 authored by nanahira's avatar nanahira

desc

parent 8e8f70ae
......@@ -3,13 +3,13 @@ import { SendTarget } from 'koishi-target-def';
import { SchemaProperty, RegisterSchema } from 'koishi-thirdeye';
class RelayConfig {
@SchemaProperty()
@SchemaProperty({ description: '接收消息方。(抄送则不区分)' })
from: SendTarget;
@SchemaProperty()
@SchemaProperty({ description: '发送消息方。(抄送则不区分)' })
to: SendTarget;
@SchemaProperty({ type: SendTarget })
@SchemaProperty({ type: SendTarget, description: '抄送。' })
cc: SendTarget[];
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment