Add API for FileServiceRequests (#8)
* add paths to api * add queue request dto * update api for pathing * update pathing again * update api Co-authored-by: rootdarkarchon <root.darkarchon@outlook.com> Co-authored-by: Stanley Dimant <stanley.dimant@varian.com>
This commit is contained in:
15
MareSynchronosAPI/QueueRequestDto.cs
Normal file
15
MareSynchronosAPI/QueueRequestDto.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MareSynchronos.API;
|
||||
|
||||
public record QueueRequestDto(Guid RequestId, QueueStatus QueueStatus);
|
||||
|
||||
public enum QueueStatus
|
||||
{
|
||||
Ready,
|
||||
Waiting
|
||||
}
|
||||
Reference in New Issue
Block a user