12 lines
319 B
C#
12 lines
319 B
C#
using PARR.Domain.DTOs.RobotSnapshotDTO;
|
|
|
|
namespace PARR.Core.Services.RobotSnapshotServices
|
|
{
|
|
public interface IRobotSnapshotService
|
|
{
|
|
Task<List<RobotSnapshotItemDto>> GetAsync(RobotSnapshotQuery queryDto);
|
|
|
|
Task<RobotSnapshotItemDto> CreateAsync(CreateRobotSnapshot robotSnapshot);
|
|
}
|
|
}
|