Initial setup - gitea
This commit is contained in:
27
PriorBankParser/TransactionDto.cs
Normal file
27
PriorBankParser/TransactionDto.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
using System;
|
||||
|
||||
namespace PriorBankParser.Dtos
|
||||
{
|
||||
public class TransactionDto
|
||||
{
|
||||
public string Contract { get; set; }
|
||||
|
||||
public DateTime TransactionDate { get; set; }
|
||||
|
||||
public string TransactionName { get; set; }
|
||||
|
||||
public string Category { get; set; }
|
||||
|
||||
public decimal Amount { get; set; }
|
||||
|
||||
public string Currency { get; set; }
|
||||
|
||||
public DateTime OperationDate { get; set; }
|
||||
|
||||
public decimal Commission { get; set; }
|
||||
|
||||
public decimal AccountTurnover { get; set; }
|
||||
|
||||
public bool IsIncome => Amount > 0 || Commission > 0;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user