17 lines
		
	
	
		
			533 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			533 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| using Marco.Pms.Model.ViewModels.Activities;
 | |
| 
 | |
| namespace Marco.Pms.Model.ViewModels.Forum
 | |
| {
 | |
|     public class TicketCommentVM
 | |
|     {
 | |
|         public Guid Id { get; set; }
 | |
|         public Guid TicketId { get; set; }
 | |
|         public BasicEmployeeVM? Author { get; set; }
 | |
|         public string MessageText { get; set; } = string.Empty;
 | |
|         public DateTime SentAt { get; set; }
 | |
|         public Guid? ParentMessageId { get; set; } // For threaded replies
 | |
| 
 | |
|         public ICollection<TicketAttachmentVM>? Attachments { get; set; }
 | |
|     }
 | |
| }
 |