oi-metrology/Shared/Models/AdditionalData.cs
Mike Phares f0c2140f93 TargetFramework update,
reference updates and added tests for Viewer
2023-01-06 21:17:30 -07:00

7 lines
181 B
C#

using System.Text.Json.Serialization;
namespace OI.Metrology.Shared.Models;
public record AdditionalData(
[property: JsonPropertyName("ServiceId")] string ServiceId
);