26 lines
770 B
C#
26 lines
770 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CryptoCalc
|
|
{
|
|
public class Transaction
|
|
{
|
|
public int Index { get; set; }
|
|
public int Date_Year { get; set; }
|
|
public int Date_Month { get; set; }
|
|
public int Date_Day { get; set; }
|
|
public int Time_Hour { get; set; }
|
|
public int Time_Minute { get; set; }
|
|
public int Time_Second { get; set; }
|
|
public string DateTimeString { get; set; }
|
|
public string CryptoCurrency { get; set; }
|
|
public float Amount { get; set; }
|
|
public string TransactionType { get; set; }
|
|
public string Service{ get; set; }
|
|
public string Comment { get; set; }
|
|
}
|
|
}
|