CourseWork_BankYouBankrupt/BankYouBankrupt/BankYouBankruptContracts/ViewModels/ReportCashierViewModel.cs
2023-05-16 21:09:11 +04:00

20 lines
417 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankYouBankruptContracts.ViewModels
{
public class ReportCashierViewModel
{
public int AccountPayeeId { get; set; }
public int? AccountSenderId { get; set; }
public double SumOperation { get; set; }
public DateTime DateComplite { get; set; }
}
}