14 lines
490 B
C#
14 lines
490 B
C#
namespace BudgetApp.Storage
|
|
{
|
|
public class Transaction : BaseModel
|
|
{
|
|
public DateOnly Date { get; set; }
|
|
public decimal Amount { get; set; }
|
|
public decimal Balance { get; set; }
|
|
public string OperationDescription { get; set; } = string.Empty;
|
|
public string Note { get; set; } = string.Empty;
|
|
public string Category { get; set; } = string.Empty;
|
|
public string TransactionId { get; set; } = string.Empty;
|
|
}
|
|
}
|