Files
PowderCoatingLogix/src/PowderCoating.Application/Interfaces/IAiSchedulingService.cs
T
2026-04-23 21:38:24 -04:00

9 lines
228 B
C#

using PowderCoating.Application.DTOs.Scheduling;
namespace PowderCoating.Application.Interfaces;
public interface IAiSchedulingService
{
Task<BatchScheduleSuggestion> SuggestBatchesAsync(BatchSchedulingRequest request);
}