diff options
Diffstat (limited to 'Software/Visual_Studio/Tango.Integration/Observables/Entities/ProcessParametersTable.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Integration/Observables/Entities/ProcessParametersTable.cs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Integration/Observables/Entities/ProcessParametersTable.cs b/Software/Visual_Studio/Tango.Integration/Observables/Entities/ProcessParametersTable.cs index 0d6fd9480..ef41ad360 100644 --- a/Software/Visual_Studio/Tango.Integration/Observables/Entities/ProcessParametersTable.cs +++ b/Software/Visual_Studio/Tango.Integration/Observables/Entities/ProcessParametersTable.cs @@ -3,6 +3,8 @@ using System.Collections.Generic; using System.Collections.ObjectModel; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; +using System.Xml.Serialization; +using Newtonsoft.Json; using System.Linq; using Tango.DAL.Remote.DB; @@ -338,6 +340,7 @@ namespace Tango.Integration.Observables /// </summary> [Column("PROCESS_PARAMETERS_TABLES_GROUP_GUID")] [ForeignKey("ProcessParametersTablesGroup")] + public String ProcessParametersTablesGroupGuid { get @@ -377,6 +380,8 @@ namespace Tango.Integration.Observables /// Gets or sets the processparameterstable process parameters tables groups. /// </summary> + [XmlIgnore] + [JsonIgnore] public virtual ProcessParametersTablesGroup ProcessParametersTablesGroup { get |
