diff options
Diffstat (limited to 'Software/Visual_Studio/Tango.Integration/Observables/Entities/Cat.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Integration/Observables/Entities/Cat.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Integration/Observables/Entities/Cat.cs b/Software/Visual_Studio/Tango.Integration/Observables/Entities/Cat.cs index 80d47a247..a9aa55890 100644 --- a/Software/Visual_Studio/Tango.Integration/Observables/Entities/Cat.cs +++ b/Software/Visual_Studio/Tango.Integration/Observables/Entities/Cat.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; @@ -38,6 +40,7 @@ namespace Tango.Integration.Observables /// </summary> [Column("LIQUID_TYPE_GUID")] [ForeignKey("LiquidType")] + public String LiquidTypeGuid { get @@ -58,6 +61,7 @@ namespace Tango.Integration.Observables /// </summary> [Column("RML_GUID")] [ForeignKey("Rml")] + public String RmlGuid { get @@ -97,6 +101,8 @@ namespace Tango.Integration.Observables /// Gets or sets the cat liquid types. /// </summary> + [XmlIgnore] + [JsonIgnore] public virtual LiquidType LiquidType { get @@ -116,6 +122,8 @@ namespace Tango.Integration.Observables /// Gets or sets the cat rml. /// </summary> + [XmlIgnore] + [JsonIgnore] public virtual Rml Rml { get |
