using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace BankContracts.SearchModels { internal class PurchaseSearchModel { public int? Id { get; set; } public DateOnly? DateTo { get; set; } public DateOnly? DateFrom { get; set; } public int? ClientId { get; set; } public List? OperationsIds { get; set; } } }