using Marco.Pms.Model.ViewModels.Activities; namespace Marco.Pms.Model.ViewModels.Directory { public class ContactNoteListVM { public Guid Id { get; set; } public string? Note { get; set; } public string? ContactName { get; set; } public string? OrganizationName { get; set; } public DateTime CreatedAt { get; set; } public BasicEmployeeVM? CreatedBy { get; set; } public DateTime? UpdatedAt { get; set; } public BasicEmployeeVM? UpdatedBy { get; set; } public Guid ContactId { get; set; } public bool IsActive { get; set; } } }