|
@@ -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);
|
|
|
}
|