24 lines
658 B
C#
24 lines
658 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace IronIntel.Contractor.Contact
|
|
{
|
|
public class ContactInfo
|
|
{
|
|
public string ContactID { get; set; }
|
|
public string ContactName { get; set; }
|
|
public string UserIID { get; set; }
|
|
public string UserName { get; set; }
|
|
public string ContactType { get; set; }
|
|
public string EmailAddress { get; set; }
|
|
public string TextAddress { get; set; }
|
|
public string Notes { get; set; }
|
|
public bool Text { get; set; }
|
|
public bool Email { get; set; }
|
|
}
|
|
|
|
}
|