This commit is contained in:
gamer147
2026-05-25 14:36:12 -04:00
parent 558e8288eb
commit 5e7a65fe5a
54 changed files with 39633 additions and 29 deletions

View File

@@ -0,0 +1,17 @@
using MessagePack;
using System.Text.Json.Serialization;
using SVSim.EmulatedEntrypoint.Models.Dtos.Requests;
namespace SVSim.EmulatedEntrypoint.Models.Dtos.Story;
[MessagePackObject]
public class AllFinishRequest : BaseRequest
{
[JsonPropertyName("story_ids")]
[Key("story_ids")]
public int[] StoryIds { get; set; } = Array.Empty<int>();
[JsonPropertyName("is_finish")]
[Key("is_finish")]
public int IsFinish { get; set; }
}