[#69] Fix for Patch and uint types
All checks were successful
DCO / DCO (pull_request) Successful in 23s
lint-build / dotnet8.0 (pull_request) Successful in 34s
lint-build / dotnet8.0 (push) Successful in 35s

Signed-off-by: Pavel Gross <p.gross@yadro.com>
This commit is contained in:
Pavel Gross 2025-04-30 15:19:20 +03:00
parent eebba7665b
commit 0816be732a
20 changed files with 212 additions and 153 deletions

View file

@ -248,12 +248,12 @@ public class FilterDto
Key ?? string.Empty,
(int)Op,
Value ?? string.Empty,
Filters != null ? Filters.Select(f => f.Filter).ToArray() : []);
Filters != null ? [.. Filters.Select(f => f.Filter)] : []);
}
public class ReplicaDto
{
public int Count { get; set; }
public uint Count { get; set; }
public string? Selector { get; set; }
}