LSFE/LSFE.Infrastructure/Model/InventorySummary.cs
2026-07-30 10:31:04 +08:00

16 lines
339 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LSFE.Infrastructure.Model
{
public class InventorySummary
{
public string? Brand { get; set; }
public int TotalQty { get; set; }
public string? MedRepName { get; set; }
}
}