Browse Source

PRS CLASSES - added description to Job Product Mapping

Nick-PRSDigital@bitbucket.org 2 years ago
parent
commit
797a635759
1 changed files with 4 additions and 0 deletions
  1. 4 0
      prs.classes/Entities/Job/JobProductMapping.cs

+ 4 - 0
prs.classes/Entities/Job/JobProductMapping.cs

@@ -9,12 +9,16 @@ namespace Comal.Classes
     {
         [CodeEditor(Editable = Editable.Enabled)]
         public string Code { get; set; }
+
+        [MemoEditor]
+        public string Description { get; set; }
         public JobLink Job { get; set; }
         public ProductLink Product { get; set; }
 
         public JobProductMapping()
         {
             Code = "";
+            Description = "";
             Job = new JobLink();
             Product = new ProductLink(() => this);
         }