23 lines
552 B
C#
Executable File
23 lines
552 B
C#
Executable File
using System;
|
|
using System.Text;
|
|
using System.Collections.Generic;
|
|
using MarketData.Utils;
|
|
|
|
namespace MarketData.MarketDataModel
|
|
{
|
|
public class CashTransactions : List<CashTransaction>
|
|
{
|
|
}
|
|
public class CashTransaction
|
|
{
|
|
public CashTransaction()
|
|
{
|
|
}
|
|
public String Account { get; set; }
|
|
public DateTime TransactionDate { get; set; }
|
|
public String Description { get; set; }
|
|
public double Credit { get; set; }
|
|
public double Debit { get; set; }
|
|
public double Balance { get; set; }
|
|
}
|
|
} |