Class Transaction
- Namespace
- Tudormobile.QIFLibrary.Entities
- Assembly
- Tudormobile.QIFLibrary.dll
Represents a financial transaction.
public class Transaction
- Inheritance
-
Transaction
- Inherited Members
Constructors
Transaction(string?)
Creates and initializes a new instance.
public Transaction(string? id = null)
Parameters
idstringUnique identifier for the transaction.
Properties
Amount
Amount.
public decimal Amount { get; set; }
Property Value
DatePosted
Date posted.
public DateTime DatePosted { get; set; }
Property Value
Id
Unique transaction identifier.
public string Id { get; set; }
Property Value
Memo
Memo.
public string Memo { get; set; }
Property Value
Name
Name of the transaction.
public string Name { get; set; }
Property Value
TransactionType
Type of the transaction.
public Transaction.TransactionTypes TransactionType { get; set; }