34 lines
1.1 KiB
C#
34 lines
1.1 KiB
C#
using LineMessaging;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using WebAPI.Services.Interfaces;
|
|
|
|
namespace WebAPI.Services.AutoReplyCommands
|
|
{
|
|
public class ArArkCellGroupInfo : IAutoReplyCommand
|
|
{
|
|
|
|
private static readonly string[] COMMANDS = { "方舟", "方舟小組", "ark" };
|
|
private static readonly string[] MESSAGES = {
|
|
"新生命靈糧堂 Arcadia 牧區 - 方舟小組\n" +
|
|
"聚會時間 & 流程 周五晚上\n" +
|
|
"07:30 PM ~ 08:30 PM - PotLuck 時光\n" +
|
|
"08:30 PM ~ 10:00 PM - 小組分享",
|
|
"1881 Forest Dr, Azusa, CA 91702"
|
|
};
|
|
private static readonly LineGroup[] GROUPS = {
|
|
LineGroup.Ark,
|
|
LineGroup.ArkCowoker,
|
|
LineGroup.Chris
|
|
};
|
|
|
|
public string Description => "顯示方舟小組聚會資訊";
|
|
public IEnumerable<string> Commands => COMMANDS;
|
|
public IEnumerable<string> ReplyMessage => MESSAGES;
|
|
public IEnumerable<LineGroup> SupportGroups => GROUPS;
|
|
public IEnumerable<ILineMessage> LineMessage => null;
|
|
}
|
|
}
|