expose-myit/Shared/Models/ServiceShop.cs
2022-12-10 12:06:16 -07:00

8 lines
242 B
C#

using System.Text.Json.Serialization;
namespace Expose.MyIT.Shared.Models;
public record ServiceShop(
[property: JsonPropertyName("Orders")] IReadOnlyList<Order> Orders,
[property: JsonPropertyName("Total")] int Total
);