SetSyncTag
This commit is contained in:
19
Adaptation/FileHandlers/json/WorkItems/ValueWithReq.cs
Normal file
19
Adaptation/FileHandlers/json/WorkItems/ValueWithReq.cs
Normal 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; }
|
||||
}
|
Reference in New Issue
Block a user