NonInventPurchasingSystem/CPRNIMS.Infrastructure/ViewModel/Canvass/SupplierList.cs
2026-01-20 07:44:30 +08:00

14 lines
268 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CPRNIMS.Infrastructure.ViewModel.Canvass
{
public class SupplierList
{
public List<int>? SupplierId { get; set; }
}
}