Files
PowderCoatingLogix/src/PowderCoating.Core/Entities/BugReport.cs
T
2026-04-23 21:38:24 -04:00

20 lines
802 B
C#

using PowderCoating.Core.Enums;
namespace PowderCoating.Core.Entities;
public class BugReport : BaseEntity
{
public string Title { get; set; } = string.Empty;
public string Description { get; set; } = string.Empty;
public string SubmittedByUserId { get; set; } = string.Empty;
public string SubmittedByUserName { get; set; } = string.Empty;
public string? CompanyName { get; set; }
public BugReportPriority Priority { get; set; } = BugReportPriority.Normal;
public BugReportStatus Status { get; set; } = BugReportStatus.New;
public string? ResolutionNotes { get; set; }
public DateTime? ResolvedAt { get; set; }
public string? ResolvedBy { get; set; }
public ICollection<BugReportAttachment> Attachments { get; set; } = new List<BugReportAttachment>();
}