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