deebug

Trade.vb

Jul 12th, 2011
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Namespace MtGox.Result
  2.     Public Class Trade
  3.         Public Property [date] As Int64
  4.         Public Property price As Decimal
  5.         Public Property amount As Decimal
  6.         Public Property price_int As Int64
  7.         Public Property amount_int As Int64
  8.         Public Property tid As ULong
  9.         Public Property price_currency As String
  10.         Public Property item As String
  11.         Public Property trade_type As String
  12.         Public ReadOnly Property date2
  13.             Get
  14.                 Return Sitesource.Util.Epoch.GetDate([date])
  15.             End Get
  16.         End Property
  17.         ''' <summary>
  18.        ''' New
  19.        ''' </summary>
  20.        ''' <remarks></remarks>
  21.        Public Sub New()
  22.  
  23.         End Sub
  24.     End Class
  25. End Namespace
Advertisement
Add Comment
Please, Sign In to add comment