mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-28 11:54:57 +00:00
9 lines
137 B
C#
9 lines
137 B
C#
using System;
|
|
|
|
namespace PepperDash.Essentials.Core.Queues
|
|
{
|
|
public interface IQueueMessage
|
|
{
|
|
void Dispatch();
|
|
}
|
|
} |