12 lines
409 B
C#
12 lines
409 B
C#
namespace Marco.Pms.Model.Dtos.Master
|
|
{
|
|
public class TicketStatusMasterDto
|
|
{
|
|
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
|
|
}
|
|
}
|