21 lines
758 B
C#
21 lines
758 B
C#
using Marco.Pms.Model.ViewModels.Master;
|
|
|
|
namespace Marco.Pms.Model.ViewModels.Directory
|
|
{
|
|
public class ContactVM
|
|
{
|
|
public Guid Id { get; set; }
|
|
public List<Guid>? ProjectIds { get; set; }
|
|
public string? Name { get; set; }
|
|
public List<ContactPhoneVM>? ContactPhones { get; set; }
|
|
public List<ContactEmailVM>? ContactEmails { get; set; }
|
|
public ContactCategoryVM? ContactCategory { get; set; }
|
|
public List<Guid>? BucketIds { get; set; }
|
|
public string? Description { get; set; }
|
|
public string? Designation { get; set; }
|
|
public string? Organization { get; set; }
|
|
public string? Address { get; set; }
|
|
public List<ContactTagVM>? Tags { get; set; }
|
|
}
|
|
}
|