Browse Source

PRS CLASSES - added description to Job Product Mapping

Nick-PRSDigital@bitbucket.org 2 năm trước cách đây
mục cha
commit
797a635759
1 tập tin đã thay đổi với 4 bổ sung0 xóa
  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);
         }