Files
2026-05-24 02:03:13 -04:00

17 lines
406 B
C#

using MessagePack;
using System.Text.Json.Serialization;
namespace SVSim.EmulatedEntrypoint.Models.Dtos;
[MessagePackObject]
public class PackBannerDto
{
[JsonPropertyName("banner_name")]
[Key("banner_name")]
public string BannerName { get; set; } = string.Empty;
[JsonPropertyName("dialog_title")]
[Key("dialog_title")]
public string DialogTitle { get; set; } = string.Empty;
}