mirror of
https://github.com/microsoft/onefuzz.git
synced 2025-06-22 06:18:06 +00:00
remove required field to match python behavior (#2367)
Co-authored-by: stas <statis@microsoft.com>
This commit is contained in:
@ -244,7 +244,8 @@ public record TaskCreate(
|
||||
public record TaskSearch(
|
||||
Guid? JobId,
|
||||
Guid? TaskId,
|
||||
[property: Required] List<TaskState> State) : BaseRequest;
|
||||
List<TaskState>? State = null
|
||||
) : BaseRequest;
|
||||
|
||||
public record PoolSearch(
|
||||
Guid? PoolId = null,
|
||||
|
Reference in New Issue
Block a user