8 lines
234 B
C#
8 lines
234 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Expose.MyIT.Shared.Models;
|
|
|
|
public record Ssa(
|
|
[property: JsonPropertyName("Orders")] IReadOnlyList<Order> Orders,
|
|
[property: JsonPropertyName("Total")] int Total
|
|
); |