10 lines
268 B
C#
10 lines
268 B
C#
using JSMR.Application.Scanning.Ports;
|
|
|
|
namespace JSMR.Application.Scanning;
|
|
|
|
public sealed class ScanVoiceWorksResponse
|
|
{
|
|
public int Inserted { get; init; }
|
|
public int Updated { get; init; }
|
|
public VoiceWorkUpsertResult[] Results { get; init; } = [];
|
|
} |