新增restful模式

This commit is contained in:
六如
2025-02-02 15:51:47 +08:00
parent 1f04edeaff
commit ddc709ede4
97 changed files with 1487 additions and 867 deletions

11
sop-sdk/sdk-csharp/SDKCSharp/Model/GetStoryModel.cs Executable file → Normal file
View File

@@ -4,11 +4,12 @@ namespace SDKCSharp.Model
{
public class GetStoryModel
{
/// <summary>
/// 故事名称
/// <summary>
/// id
/// </summary>
/// <value>The name.</value>
[JsonProperty("name")]
public string Name { get; set; }
/// <value>The id.</value>
[JsonProperty("id")]
public int Id { get; set; }
}
}