Files
2024-07-05 21:36:15 +03:30

11 lines
376 B
C#

namespace CompanyManagment.App.Contracts.InstitutionContractContactinfo;
public class ContactInfoSearchModel
{
public string PhoneType { get; set; }
public long InstitutionContractId { get; set; }
public string Position { get; set; }
public string PhoneNumber { get; set; }
public string FnameLname { get; set; }
public bool SendSms { get; set; }
}