Files
KArtSell.Aegis/docs/Design/kbx-foundation-v36/backend/Modules/ERP/Items/Search/Response.cs
T

21 lines
456 B
C#

namespace Modules.ERP.Items.Search;
public sealed record ItemMasterRow(
Guid Id,
string Code,
string Name,
string CategoryName,
string Specification,
string Unit,
string Barcode,
Guid? DefaultWarehouseId,
string DefaultWarehouseName,
bool LotManaged,
bool ExpiryManaged,
bool Active,
long Version);
public sealed record SearchItemsResponse(
IReadOnlyList<ItemMasterRow> Items,
int TotalCount);