9 lines
228 B
C#
9 lines
228 B
C#
using PowderCoating.Application.DTOs.Scheduling;
|
|
|
|
namespace PowderCoating.Application.Interfaces;
|
|
|
|
public interface IAiSchedulingService
|
|
{
|
|
Task<BatchScheduleSuggestion> SuggestBatchesAsync(BatchSchedulingRequest request);
|
|
}
|