18 lines
730 B
C#
18 lines
730 B
C#
namespace Marco.Pms.Model.Dtos.Forum
|
|
{
|
|
public class CreateTicketDto
|
|
{
|
|
public string Subject { get; set; } = string.Empty;
|
|
public string Description { get; set; } = string.Empty;
|
|
public Guid StatusId { get; set; }
|
|
public Guid TypeId { get; set; } // QualityIssue, HelpDesk, Feedback
|
|
public int CreatedById { get; set; }
|
|
public DateTime CreatedAt { get; set; }
|
|
public int LinkedProjectId { get; set; }
|
|
public int? LinkedActivityId { get; set; } // task or project ID
|
|
public ICollection<ForumAttachmentDto>? Attachments { get; set; }
|
|
public Guid PriorityId { get; set; }
|
|
public ICollection<Guid>? TagIds { get; set; }
|
|
}
|
|
}
|