This commit is contained in:
2021-01-18 23:35:17 +00:00
parent c01e7c1e64
commit 247c600e15
5 changed files with 5 additions and 16 deletions

View File

@@ -37,15 +37,13 @@ namespace AyaNova.Models
public decimal Retail { get; set; }
public string UnitOfMeasure { get; set; }
public string UPC { get; set; }
[Required]
public bool TrackSerialNumber { get; set; }
public Part()
{
Tags = new List<string>();
Active = true;
TrackSerialNumber = false;
Cost = 0m;
Retail = 0m;
}