18 lines
534 B
C#
18 lines
534 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CompanyManagment.App.Contracts.InstitutionContractContactinfo;
|
|
|
|
public class CreateContactInfo
|
|
{
|
|
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; }
|
|
public string SendSmsString { get; set; }
|
|
} |