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.
8 lines
164 B
C#
8 lines
164 B
C#
namespace ReC.Application.OutResults.Queries;
|
|
|
|
public class ReadOutResQuery
|
|
{
|
|
public long? ProfileId { get; set; }
|
|
|
|
public long? ActionId { get; set; }
|
|
} |