case 3993

This commit is contained in:
2021-09-29 21:58:51 +00:00
parent 5b4fb23498
commit 895a2fed53

View File

@@ -1,3 +1,5 @@
using System.Collections.Generic;
namespace AyaNova.Models
{
//Note this is how to define a View backed model with no key (id)
@@ -11,6 +13,7 @@ namespace AyaNova.Models
public bool PartActive { get; set; }
public decimal PartCost { get; set; }
public decimal PartRetail { get; set; }
public List<string> PartTags { get; set; }
public long? PartWarehouseId { get; set; }
public string PartWarehouseName { get; set; }
public long? WholesalerId { get; set; }