using System; 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; namespace Tango.Integration.Observables { [Table("EMBEDDED_SOFTWARE_VERSIONS")] public partial class EmbeddedSoftwareVersion : ObservableEntity { protected Double _version; /// /// Gets or sets the embeddedsoftwareversion version. /// [Column("VERSION")] public Double Version { get { return _version; } set { _version = value; RaisePropertyChanged(nameof(Version)); } } protected String _name; /// /// Gets or sets the embeddedsoftwareversion name. /// [Column("NAME")] public String Name { get { return _name; } set { _name = value; RaisePropertyChanged(nameof(Name)); } } protected ObservableCollection _configurations; /// /// Gets or sets the embeddedsoftwareversion configurations. /// public virtual ObservableCollection Configurations { get { return _configurations; } set { _configurations = value; RaisePropertyChanged(nameof(Configurations)); } } /// /// Initializes a new instance of the class. /// public EmbeddedSoftwareVersion() : base() { Configurations = new ObservableCollection(); } } }