Add OutResDto and ReadOutResQuery for output handling
Added a new `OutResDto` record in the `ReC.Application.Common.Dto` namespace to represent output result data with properties like `Id`, `ActionId`, `Header`, `Body`, and audit fields. Added a new `ReadOutResQuery` class in the `ReC.Application.OutResults.Queries` namespace to facilitate querying output results based on `ProfileId` and `ActionId`.
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
namespace ReC.Application.OutResults.Queries;
|
||||
|
||||
public class ReadOutResQuery
|
||||
{
|
||||
public long ProfileId { get; set; }
|
||||
|
||||
public long ActionId { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user