using Quadarax.Foundation.Core.Business.Processor.Enums;
namespace Quadarax.Foundation.Core.Business.Processor.Task;
public interface ITaskIdentifier
{
///
/// Primary key of the task.
///
long Id {get;}
///
/// Queue type of the task where task is stored or belongs to.
///
ProcessQueueTypeEnum QueueType {get;}
}