Church.Net.API/WebAPI/Services/Interfaces/IAutoReplyCommand.cs
Chris Chen ad0bc0e49b WIP
2023-08-20 11:28:47 -07:00

22 lines
626 B
C#

using Church.Net.Entity;
using LineMessaging;
using NuGet.Protocol.Plugins;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace WebAPI.Services.Interfaces
{
public interface IAutoReplyCommand
{
string Description { get; }
IEnumerable<string> Commands { get; }
string ReplyTextMessage { get; }
string ReplyJsonMessage { get; }
IEnumerable<DomainType> SupportGroups { get; }
IEnumerable<ILineMessage> LineMessage { get; }
bool Enabled(PastoralDomain pastoralDomain = null, string command = null);
}
}