2022-12-10 12:06:16 -07:00

7 lines
157 B
C#

using System.Text.Json.Serialization;
namespace Expose.MyIT.Shared.Models;
public record Price(
[property: JsonPropertyName("CC")] string CC
);