24 lines
522 B
C#
24 lines
522 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 OperationId { get; set; }
|
|
|
|
public int DebitingId { get; set; }
|
|
|
|
public string AccountPayeeNumber { get; set; }
|
|
|
|
public string? AccountSenderNumber { get; set; }
|
|
|
|
public double SumOperation { get; set; }
|
|
|
|
public DateTime DateComplite { get; set; }
|
|
}
|
|
}
|