Questionable/Questionable.Model/Questing/PurchaseMenu.cs

13 lines
295 B
C#
Raw Normal View History

2024-09-22 12:31:14 +00:00
using System.Text.Json.Serialization;
using Questionable.Model.Questing.Converter;
namespace Questionable.Model.Questing;
public sealed class PurchaseMenu
{
public string? ExcelSheet { get; set; }
[JsonConverter(typeof(ExcelRefConverter))]
public ExcelRef? Key { get; set; }
}