Updated worker to show upsert issue messages.
All checks were successful
ci / build-test (push) Successful in 2m36s
ci / publish-image (push) Has been skipped

This commit is contained in:
2026-03-07 00:03:18 -05:00
parent 1d40013837
commit 1e01edf1b7
7 changed files with 53 additions and 11 deletions

View File

@@ -10,6 +10,8 @@ public interface IVoiceWorkUpdater
public class VoiceWorkUpsertResult
{
public string ProductId { get; set; } = string.Empty;
public string Title { get; set; } = string.Empty;
public int? VoiceWorkId { get; set; }
public VoiceWorkStatus UpdateStatus { get; set; }
public ICollection<VoiceWorkUpsertIssue> Issues { get; } = [];