12 lines
		
	
	
		
			406 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			406 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace Marco.Pms.Model.ViewModels.Forum
 | |
| {
 | |
|     public class TicketStatusVM
 | |
|     {
 | |
|         public Guid Id { get; set; }
 | |
|         public string Name { get; set; } = string.Empty; // e.g., "Open", "In Progress"
 | |
|         public string? Description { get; set; }
 | |
|         public string? ColorCode { get; set; } // e.g., "#FF0000"
 | |
|         public bool IsDefault { get; set; } // true for system defaults
 | |
|     }
 | |
| }
 |