27 lines
1.1 KiB
C#
27 lines
1.1 KiB
C#
using Marco.Pms.Model.ViewModels.Activities;
|
|
using Marco.Pms.Model.ViewModels.Master;
|
|
using Marco.Pms.Model.ViewModels.Projects;
|
|
|
|
namespace Marco.Pms.Model.ViewModels.Directory
|
|
{
|
|
public class ContactProfileVM
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string? Name { get; set; }
|
|
public string? Description { get; set; }
|
|
public string? Organization { get; set; }
|
|
public string? Address { get; set; }
|
|
public DateTime CreatedAt { get; set; }
|
|
public BasicEmployeeVM? CreatedBy { get; set; }
|
|
public DateTime? UpdatedAt { get; set; }
|
|
public BasicEmployeeVM? UpdatedBy { get; set; }
|
|
public List<ContactPhoneVM>? ContactPhones { get; set; }
|
|
public List<ContactEmailVM>? ContactEmails { get; set; }
|
|
public ContactCategoryVM? ContactCategory { get; set; }
|
|
public List<BasicProjectVM>? Projects { get; set; }
|
|
public List<BucketVM>? Buckets { get; set; }
|
|
public List<ContactTagVM>? Tags { get; set; }
|
|
public List<ContactNoteVM>? Notes { get; set; }
|
|
}
|
|
}
|