20 lines
430 B
C#
20 lines
430 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace BankYouBankruptContracts.ViewModels
|
|||
|
{
|
|||
|
public class ReportClientViewModel
|
|||
|
{
|
|||
|
public int CardId { get; set; }
|
|||
|
|
|||
|
public string TypeOperation { get; set; } = string.Empty;
|
|||
|
|
|||
|
public double SumOperation { get; set; }
|
|||
|
|
|||
|
public DateTime DateComplite { get; set; }
|
|||
|
}
|
|||
|
}
|