mirror of
https://gitee.com/durcframework/SOP.git
synced 2025-08-12 07:02:14 +08:00
19 lines
345 B
C#
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; }
|
|
|
|
}
|
|
}
|