18 lines
484 B
C#
18 lines
484 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 ForSupplierSearchList
|
|
{
|
|
public List<long>? PRDetailsId { get; set; }
|
|
public List<long>? PRNo { get; set; }
|
|
public List<long>? ItemNo { get; set; }
|
|
public List<string>? ItemName { get; set; }
|
|
public List<string>? ItemDescription { get; set; }
|
|
}
|
|
}
|