using System; using System.Collections.Generic; using System.Collections.ObjectModel; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using Tango.DAL.Remote.DB; namespace Tango.Integration.Observables { [Table("TECH_IOS")] public partial class TechIo : ObservableEntity { protected Int32 _code; /// /// Gets or sets the techio code. /// [Column("CODE")] public Int32 Code { get { return _code; } set { _code = value; RaisePropertyChanged(nameof(Code)); } } protected String _name; /// /// Gets or sets the techio name. /// [Column("NAME")] public String Name { get { return _name; } set { _name = value; RaisePropertyChanged(nameof(Name)); } } protected String _description; /// /// Gets or sets the techio description. /// [Column("DESCRIPTION")] public String Description { get { return _description; } set { _description = value; RaisePropertyChanged(nameof(Description)); } } protected Int32 _port; /// /// Gets or sets the techio port. /// [Column("PORT")] public Int32 Port { get { return _port; } set { _port = value; RaisePropertyChanged(nameof(Port)); } } protected Int32 _type; /// /// Gets or sets the techio type. /// [Column("TYPE")] public Int32 Type { get { return _type; } set { _type = value; RaisePropertyChanged(nameof(Type)); } } protected Double _min; /// /// Gets or sets the techio min. /// [Column("MIN")] public Double Min { get { return _min; } set { _min = value; RaisePropertyChanged(nameof(Min)); } } protected Double _max; /// /// Gets or sets the techio max. /// [Column("MAX")] public Double Max { get { return _max; } set { _max = value; RaisePropertyChanged(nameof(Max)); } } /// /// Initializes a new instance of the class. /// public TechIo() : base() { } } }