Vikas Nale 9acb9974a0 Add a WPF project for utility application
- Import Director contact is implemented
2025-07-25 13:05:59 +05:30

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; }
}
}