1
0
forked from liza/Questionable

13 lines
295 B
C#
Raw Normal View History

2024-09-22 14:31:14 +02: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; }
}