22 lines
658 B
C#
22 lines
658 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CPRNIMS.Infrastructure.Entities.Purchasing
|
|
{
|
|
public class ItemWithoutSupplier
|
|
{
|
|
[Key]
|
|
public long PRDetailsId { get; set; }
|
|
public long PRNo { get; set; }
|
|
public long ItemNo { get; set; }
|
|
public string UserId { get; set; } = string.Empty;
|
|
public string ItemName { get; set; }=string.Empty;
|
|
public string ItemDescription { get; set; } = string.Empty;
|
|
public string FullName { get; set; } = string.Empty;
|
|
}
|
|
}
|