oi-metrology/Shared/Models/AllowedActions.cs
2023-02-16 15:17:31 -07:00

9 lines
299 B
C#

using System.Text.Json.Serialization;
namespace OI.Metrology.Shared.Models;
public record AllowedActions(
[property: JsonPropertyName("Incident")] bool Incident,
[property: JsonPropertyName("Accept")] bool Accept,
[property: JsonPropertyName("Reorder")] bool Reorder
);