2023-10-07 13:57:40 -07:00

19 lines
372 B
C#

using System.Text.Json.Serialization;
namespace Adaptation.FileHandlers.json.WorkItems;
public class ValueWithReq
{
[JsonConstructor]
public ValueWithReq(
Value value,
int req
)
{
Value = value;
Req = req;
}
public Value Value { get; set; } // { init; get; }
public int Req { get; set; } // { init; get; }
}