mirror of
https://gitee.com/durcframework/SOP.git
synced 2025-08-12 07:02:14 +08:00
16 lines
263 B
C#
16 lines
263 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace SDKCSharp.Model
|
|
{
|
|
public class GetProductModel
|
|
{
|
|
|
|
/// <summary>
|
|
/// id
|
|
/// </summary>
|
|
/// <value>The id.</value>
|
|
[JsonProperty("id")]
|
|
public int Id { get; set; }
|
|
}
|
|
}
|