Updated scanner and table names.
All checks were successful
ci / build-test (push) Successful in 2m38s
ci / publish-image (push) Has been skipped

This commit is contained in:
2026-03-05 20:56:57 -05:00
parent 79bece9e1c
commit 61f2e64972
12 changed files with 79 additions and 17 deletions

View File

@@ -1,4 +1,5 @@
using JSMR.Application.Scanning.Contracts;
using JSMR.Domain.Enums;
namespace JSMR.Application.Scanning.Ports;
@@ -10,6 +11,7 @@ public interface IVoiceWorkUpdater
public class VoiceWorkUpsertResult
{
public int? VoiceWorkId { get; set; }
public VoiceWorkStatus UpdateStatus { get; set; }
public ICollection<VoiceWorkUpsertIssue> Issues { get; } = [];
public VoiceWorkUpsertStatus Status { get; set; } = VoiceWorkUpsertStatus.Unchanged;
}