13 lines
378 B
C#

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; }
}
}