From b3ce5ad28a769a2f85bdbb75a38d8896c280425b Mon Sep 17 00:00:00 2001 From: TekH Date: Wed, 3 Dec 2025 14:43:07 +0100 Subject: [PATCH] Make ProfileId and ActionId properties nullable Changed the `ProfileId` and `ActionId` properties in the `ReadOutResQuery` class from non-nullable `long` to nullable `long?`. This allows these properties to hold `null` values, making them optional for scenarios where they are not always required or applicable. --- src/ReC.Application/OutResults/Queries/ReadOutResQuery.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ReC.Application/OutResults/Queries/ReadOutResQuery.cs b/src/ReC.Application/OutResults/Queries/ReadOutResQuery.cs index 9ff49ba..a933412 100644 --- a/src/ReC.Application/OutResults/Queries/ReadOutResQuery.cs +++ b/src/ReC.Application/OutResults/Queries/ReadOutResQuery.cs @@ -2,7 +2,7 @@ public class ReadOutResQuery { - public long ProfileId { get; set; } + public long? ProfileId { get; set; } - public long ActionId { get; set; } + public long? ActionId { get; set; } } \ No newline at end of file