SetSyncTag

This commit is contained in:
2023-10-07 13:57:40 -07:00
parent b943a882cb
commit 7d8f409ff3
4 changed files with 221 additions and 35 deletions

View File

@ -0,0 +1,19 @@
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; }
}