Church.Net.API/WebAPI/Services/Interfaces/IAutoReplyCommand.cs
2022-10-02 21:06:48 -07:00

21 lines
585 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; }
IEnumerable<DomainType> SupportGroups { get; }
IEnumerable<ILineMessage> LineMessage { get; }
bool Enabled(PastoralDomain pastoralDomain = null, string command = null);
}
}