9 lines
154 B
C#
9 lines
154 B
C#
namespace Lux.Report.Data.DTO
|
|
{
|
|
public record DownloadOfferQueryDto(
|
|
int? ReqId,
|
|
string? RepType,
|
|
string? SelFile
|
|
);
|
|
}
|