Files
lux/Lux.Report.Data/DTO/DownloadOfferQueryDto.cs
2026-04-10 15:43:17 +02:00

9 lines
154 B
C#

namespace Lux.Report.Data.DTO
{
public record DownloadOfferQueryDto(
int? ReqId,
string? RepType,
string? SelFile
);
}