15 lines
343 B
C#
15 lines
343 B
C#
using Cowain.Base.IServices;
|
|
using Plugin.Cowain.Wcs.Models.Dto;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Plugin.Cowain.Wcs.IServices;
|
|
|
|
public interface IFindFlowTaskService : IBaseService
|
|
{
|
|
public Task FindTaskAsync(TaskDataDto? taskData = null);
|
|
}
|