Initial setup - gitea

This commit is contained in:
Vladimir K
2023-07-23 17:10:20 +03:00
parent f9c957506c
commit 232a59569c
12 changed files with 370 additions and 127 deletions

View 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;
}
}