aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.DAL.Observables/Entities/EmbeddedSoftwareVersion.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.DAL.Observables/Entities/EmbeddedSoftwareVersion.cs')
-rw-r--r--Software/Visual_Studio/Tango.DAL.Observables/Entities/EmbeddedSoftwareVersion.cs38
1 files changed, 38 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.DAL.Observables/Entities/EmbeddedSoftwareVersion.cs b/Software/Visual_Studio/Tango.DAL.Observables/Entities/EmbeddedSoftwareVersion.cs
index 25d8255cf..ee66f11a1 100644
--- a/Software/Visual_Studio/Tango.DAL.Observables/Entities/EmbeddedSoftwareVersion.cs
+++ b/Software/Visual_Studio/Tango.DAL.Observables/Entities/EmbeddedSoftwareVersion.cs
@@ -10,6 +10,44 @@ namespace Tango.DAL.Observables
public class EmbeddedSoftwareVersion : ObservableEntity<EMBEDDED_SOFTWARE_VERSIONS>
{
+ private Double _version;
+ /// <summary>
+ /// Gets or sets the embeddedsoftwareversion version.
+ /// </summary>
+ [EntityFieldName("VERSION")]
+ public Double Version
+ {
+ get
+ {
+ return _version;
+ }
+
+ set
+ {
+ _version = value; RaisePropertyChanged(nameof(Version));
+ }
+
+ }
+
+ private String _name;
+ /// <summary>
+ /// Gets or sets the embeddedsoftwareversion name.
+ /// </summary>
+ [EntityFieldName("NAME")]
+ public String Name
+ {
+ get
+ {
+ return _name;
+ }
+
+ set
+ {
+ _name = value; RaisePropertyChanged(nameof(Name));
+ }
+
+ }
+
private ObservableCollection<Configuration> _configurations;
/// <summary>
/// Gets or sets the embeddedsoftwareversion configurations.