10 lines
235 B
C#
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);
|
|
}
|