11 lines
376 B
C#
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; }
|
|
} |