33 lines
923 B
C#
33 lines
923 B
C#
using Marco.Pms.Model.Projects;
|
|
using System.Net;
|
|
using System.Xml.Linq;
|
|
|
|
namespace Marco.Pms.UtilityApplication
|
|
{
|
|
public class Contacts
|
|
{
|
|
public string BucketId { get; set; }
|
|
public string Owner { get; set; }
|
|
public string Name { get; set; }
|
|
public string Designation { get; set; }
|
|
|
|
public string Organization { get; set; }
|
|
public string Mobile1 { get; set; }
|
|
public string Mobile2 { get; set; }
|
|
public string Mobile3 { get; set; }
|
|
public string Email1 { get; set; }
|
|
|
|
public string Email2 { get; set; }
|
|
public string Location { get; set; }
|
|
public string Address { get; set; }
|
|
public string MoreInformation { get; set; }
|
|
|
|
public string Category { get; set; }
|
|
public Guid? CategoryId { get; set; }
|
|
|
|
public string Tags { get; set; }
|
|
public string Project { get; set; }
|
|
|
|
}
|
|
}
|