Files
SOP/sop-sdk/sdk-csharp/SDKCSharp/Response/GetProductResponse.cs
2025-02-02 21:28:05 +08:00

19 lines
345 B
C#

using System;
using Newtonsoft.Json;
namespace SDKCSharp.Response
{
public class GetProductResponse
{
[JsonProperty("id")]
public int Id { get; set; }
[JsonProperty("name")]
public string Name { get; set; }
[JsonProperty("gmt_create")]
public string GmtCreate { get; set; }
}
}