Pack opening
This commit is contained in:
16
SVSim.EmulatedEntrypoint/Models/Dtos/PackBannerDto.cs
Normal file
16
SVSim.EmulatedEntrypoint/Models/Dtos/PackBannerDto.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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;
|
||||
}
|
||||
Reference in New Issue
Block a user