6bc45e4486
Build and Deploy to Production / build-and-deploy (push) Successful in 1m47s
- Add appversion.proto with GetAll, Get, Update RPCs - Add GetAllAppVersionsQuery and handler - Add UpdateAppVersionCommand and handler - Add AppVersionService gRPC service - Add AppVersionProfile for Mapster mappings - Update IApplicationContractContext with AppVersions client - Bump Configuration.Protobuf to 1.0.20
7 lines
208 B
C#
7 lines
208 B
C#
namespace BackOffice.BFF.Application.ConfigurationCQ.Queries.GetAllAppVersions;
|
|
|
|
public class GetAllAppVersionsQuery : IRequest<GetAllAppVersionsResponseDto>
|
|
{
|
|
public bool IncludeInactive { get; set; }
|
|
}
|