Files
SOP/sop-sdk/sdk-csharp/SDKCSharp/Response/GetStoryResponse.cs
六如 942826f4b0 5.0
2024-12-02 23:03:25 +08:00

19 lines
343 B
C#

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