14 lines
		
	
	
		
			435 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			435 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; }
 | 
						|
        public List<string>? PreSignedUrls { get; set; }
 | 
						|
    }
 | 
						|
}
 |