mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-01-25 02:14:56 +00:00
18 lines
314 B
C#
18 lines
314 B
C#
using System;
|
|
|
|
namespace PepperDash.Essentials.Core.Queues
|
|
{
|
|
public interface IQueueMessage
|
|
{
|
|
void Dispatch();
|
|
}
|
|
}
|
|
|
|
namespace PepperDash_Essentials_Core.Queues
|
|
{
|
|
[Obsolete("Use PepperDash.Essentials.Core.Queues")]
|
|
public interface IQueueMessage
|
|
{
|
|
void Dispatch();
|
|
}
|
|
} |