12 lines
407 B
C#
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; }
|
|
} |