//------------------------------------------------------------------------------ // // This code was generated from a template. // // Manual changes to this file may cause unexpected behavior in your application. // Manual changes to this file will be overwritten if the code is regenerated. // //------------------------------------------------------------------------------ namespace Tango.DAL.Remote.DB { using System; using System.Collections.Generic; public partial class SPOOL { public int ID { get; set; } public string GUID { get; set; } public System.DateTime LAST_UPDATED { get; set; } public string SPOOL_TYPE_GUID { get; set; } public string MACHINE_GUID { get; set; } public Nullable START_OFFSET_PULSES { get; set; } public Nullable BACKING_RATE { get; set; } public Nullable SEGMENT_OFFSET_PULSES { get; set; } public Nullable BOTTOM_BACKING_RATE { get; set; } public Nullable LIMIT_SWITCH_START_POINT_OFFSET { get; set; } public virtual MACHINE MACHINE { get; set; } public virtual SPOOL_TYPES SPOOL_TYPES { get; set; } } }