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

12 lines
407 B
C#

namespace CompanyManagment.App.Contracts.InstitutionContractContactinfo;
public class ContactInfoViewModel
{
public long Id { get; set; }
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; }
}