7 lines
157 B
C#
7 lines
157 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Expose.MyIT.Shared.Models;
|
|
|
|
public record Price(
|
|
[property: JsonPropertyName("CC")] string CC
|
|
); |