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

9 lines
178 B
C#
Raw Normal View History

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