feat: add TaskTitle, PreferredDate, SheetNotes to ExternalTicket

This commit is contained in:
2026-05-07 09:18:03 +10:00
parent 14f00458f3
commit 2472894704
+4 -5
View File
@@ -64,12 +64,15 @@ namespace Disco.Plugins.ServiceTracker.Models
public DateTime Timestamp { get; set; }
public string RequesterEmail { get; set; }
public string RequesterName { get; set; }
public string TaskTitle { get; set; }
public string DeviceName { get; set; }
public string Location { get; set; }
public string IssueDescription { get; set; }
public string RawPriority { get; set; }
public string RawStatus { get; set; }
public string AssignedTo { get; set; }
public DateTime? PreferredDate { get; set; }
public string SheetNotes { get; set; }
public bool IsOpen { get; set; }
public DateTime ImportedDate { get; set; }
@@ -87,10 +90,6 @@ namespace Disco.Plugins.ServiceTracker.Models
public string DisplayName { get; set; }
public List<string> DiscoUserIds { get; set; }
public string Email { get; set; }
public TechEntry()
{
DiscoUserIds = new List<string>();
}
public TechEntry() { DiscoUserIds = new List<string>(); }
}
}