27 lines
667 B
C#
27 lines
667 B
C#
using BankYouBankruptDataModels.Enums;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BankYouBankruptContracts.ViewModels
|
|
{
|
|
public class ReportCashierAccountsViewModel
|
|
{
|
|
|
|
public int Sum { get; set; }
|
|
|
|
public string AccountSenderNumber { get; set; } = "---";
|
|
|
|
public string AccountPayeeNumber { get; set; } = "---";
|
|
|
|
public DateTime DateOperation { get; set; } = DateTime.Now;
|
|
|
|
public string CashierSurname { get; set; } = string.Empty;
|
|
|
|
public TypeOperationEnum typeOperation { get; set; }
|
|
}
|
|
}
|