Advertisement
Guest User

Untitled

a guest
Oct 4th, 2012
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.93 KB | None | 0 0
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. //    This code was generated from a template.
  4. //
  5. //    Manual changes to this file may cause unexpected behavior in your application.
  6. //    Manual changes to this file will be overwritten if the code is regenerated.
  7. // </auto-generated>
  8. //------------------------------------------------------------------------------
  9.  
  10. namespace GD.Models
  11. {
  12.     using System;
  13.     using System.Collections.Generic;
  14.    
  15.     public partial class Fix
  16.     {
  17.         public int FixId { get; set; }
  18.         public int MetalId { get; set; }
  19.         public int CurrencyId { get; set; }
  20.         public decimal FixAm { get; set; }
  21.         public Nullable<decimal> FixPm { get; set; }
  22.         public System.DateTime Updated { get; set; }
  23.    
  24.         public virtual Currency Currency { get; set; }
  25.         public virtual Metal Metal { get; set; }
  26.     }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement