feat(Request): Erstellt, um allgemeine „Request“-Eigenschaften zu behandeln

This commit is contained in:
tekh 2025-07-07 16:16:40 +02:00
parent dec10eeb79
commit 3b9b9f19b2

View File

@ -0,0 +1,16 @@
using MediatR;
namespace Leanetec.EConnect.Client.Models;
public record CommonRequest
{
public int? ApiVersion { get; set; }
}
public record Request : CommonRequest, IRequest
{
}
public record Request<TResponse> : CommonRequest, IRequest<TResponse>
{
}