ModelTextJson.cs 281 B

12345678910111213
  1. using System.Text.Json.Serialization;
  2. namespace CosmosDB3Test
  3. {
  4. public class ModelTextJson
  5. {
  6. [JsonPropertyName("id")]
  7. public string TheIdentifier { get; set; }
  8. [JsonPropertyName("title")]
  9. public string DescriptiveTitle { get; set;}
  10. }
  11. }