//------------------------------------------------------------------------------ // // This code was generated by a tool. // Tango Observables Generator // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. Do not modify! // //------------------------------------------------------------------------------ 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.BL.Entities { [Table("MACHINE_STUDIO_VERSIONS")] public partial class MachineStudioVersion : ObservableEntity { protected String _version; /// /// Gets or sets the machinestudioversion version. /// [Column("VERSION")] public String Version { get { return _version; } set { _version = value; RaisePropertyChanged(nameof(Version)); } } protected String _ftpfilepath; /// /// Gets or sets the machinestudioversion ftp file path. /// [Column("FTP_FILE_PATH")] public String FtpFilePath { get { return _ftpfilepath; } set { _ftpfilepath = value; RaisePropertyChanged(nameof(FtpFilePath)); } } protected String _comments; /// /// Gets or sets the machinestudioversion comments. /// [Column("COMMENTS")] public String Comments { get { return _comments; } set { _comments = value; RaisePropertyChanged(nameof(Comments)); } } protected String _userguid; /// /// Gets or sets the machinestudioversion user guid. /// [Column("USER_GUID")] [ForeignKey("User")] public String UserGuid { get { return _userguid; } set { _userguid = value; RaisePropertyChanged(nameof(UserGuid)); } } protected Boolean _forceupdate; /// /// Gets or sets the machinestudioversion force update. /// [Column("FORCE_UPDATE")] public Boolean ForceUpdate { get { return _forceupdate; } set { _forceupdate = value; RaisePropertyChanged(nameof(ForceUpdate)); } } protected User _user; /// /// Gets or sets the machinestudioversion user. /// [XmlIgnore] [JsonIgnore] public virtual User User { get { return _user; } set { _user = value; RaisePropertyChanged(nameof(User)); } } /// /// Initializes a new instance of the class. /// public MachineStudioVersion() : base() { } } }