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.
This commit is contained in:
parent
d7c2796d79
commit
b3ce5ad28a
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
public class ReadOutResQuery
|
public class ReadOutResQuery
|
||||||
{
|
{
|
||||||
public long ProfileId { get; set; }
|
public long? ProfileId { get; set; }
|
||||||
|
|
||||||
public long ActionId { get; set; }
|
public long? ActionId { get; set; }
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user