Files
DMS/DMS.Application/Interfaces/IDataProcessingService.cs

9 lines
178 B
C#

using DMS.Core.Models;
using System.Threading.Tasks;
namespace DMS.Application.Interfaces;
public interface IDataProcessingService
{
Task EnqueueAsync(Variable variable);
}