2023-04-07 22:32:57 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace BankContracts.ViewModels
|
|
|
|
|
{
|
|
|
|
|
public class ReportCurrencyPurchasePaymentViewModel
|
|
|
|
|
{
|
|
|
|
|
public int CurrencyPurchaseId { get; set; }
|
|
|
|
|
public DateTime PurchaseDate { get; set; }
|
2023-05-20 03:30:06 +04:00
|
|
|
|
public string CurrencyName { get; set; }
|
2023-05-20 05:39:07 +04:00
|
|
|
|
public List<(int PaymentId, DateTime PaymentDate)> Payments { get; set; } = new();
|
2023-04-07 22:32:57 +04:00
|
|
|
|
}
|
|
|
|
|
}
|