Files
SOP/sop-sdk/sdk-csharp/SDKCSharp/Response/GetStoryResponse.cs
六如 403e8111f4 5.0
2024-12-22 23:09:46 +08:00

19 lines
343 B
C#
Executable File

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; }
}
}