16 lines
351 B
C#
Raw Normal View History

2024-04-28 21:24:09 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace TravelAgencyCompanyContracts.SearchModel
{
public class CustomerSearchModel
{
public int? Id { get; set; }
public string? Fio { get; set; }
public string? PhoneNumber { get; set; }
}
}