BotSharp/src/Infrastructure/BotSharp.Abstraction/Infrastructures/ContentTransfers/IServiceZone.cs
2023-06-22 23:43:00 -05:00

10 lines
235 B
C#

using BotSharp.Abstraction.Infrastructures.ContentTransmitters;
namespace BotSharp.Abstraction.Infrastructures.ContentTransfers;
public interface IServiceZone
{
int Priority { get; }
Task Serving(ContentContainer content);
}