Files
SVSimServer/SVSim.EmulatedEntrypoint/Models/Dtos/Responses/SpecialTitleCheckResponse.cs
2026-05-23 14:18:01 -04:00

15 lines
425 B
C#

using MessagePack;
namespace SVSim.EmulatedEntrypoint.Models.Dtos.Responses;
[MessagePackObject]
public class SpecialTitleCheckResponse
{
/// <summary>
/// Numeric string. "0"/"1" are the built-in default title screens; any other value
/// is treated as an asset-bundle id. When omitted, the client defaults to "0".
/// </summary>
[Key("title_image_id")]
public string? TitleImageId { get; set; }
}