You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
386 B
C#
15 lines
386 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace DSWeb.Areas.CommMng.Models
|
|
{
|
|
[JsonObject]
|
|
public class PluRefModel
|
|
{
|
|
public string PluCode { get; set; }
|
|
public string PluName { get; set; }
|
|
public string CodeAndName { get; set; }
|
|
public string Unit { get; set; }
|
|
public string Spec { get; set; }
|
|
public decimal Price { get; set; }
|
|
}
|
|
} |