31 lines
637 B
C#
31 lines
637 B
C#
using BankDataModels.Enums;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BankContracts.BindingModels.Reports
|
|
{
|
|
public class ReportBindingModel
|
|
{
|
|
public string FileName { get; set; } = string.Empty;
|
|
|
|
public int? ClientId { get; set; }
|
|
|
|
public int? AccountId { get; set; }
|
|
|
|
public List<int>? CardList { get; set; }
|
|
|
|
public string? ClientFullName { get; set; } = string.Empty;
|
|
|
|
public DateTime? DateFrom { get; set; }
|
|
|
|
public DateTime? DateTo { get; set; }
|
|
|
|
public MailsEnum Role { get; set; }
|
|
|
|
public string? Email { get; set; }
|
|
}
|
|
}
|