using Marco.Pms.Model.ViewModels.Employee; namespace Marco.Pms.Model.ViewModels.Activities { public class CommentVM { public long Id { get; set; } public long TaskAllocationId { get; set; } public DateTime CommentDate { get; set; } public string? Comment { get; set; } public int CommentedBy { get; set; } public BasicEmployeeVM? Employee { get; set; } } }