//------------------------------------------------------------------------------ // // 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 GD.Models { using System; using System.Collections.Generic; public partial class Fix { public int FixId { get; set; } public int MetalId { get; set; } public int CurrencyId { get; set; } public decimal FixAm { get; set; } public Nullable FixPm { get; set; } public System.DateTime Updated { get; set; } public virtual Currency Currency { get; set; } public virtual Metal Metal { get; set; } } }