Moved to ADO2024 PI#
Ran SortCodeMethods
This commit is contained in:
21
ADO2024/PI3/WorkItems/ValueWithReq.cs
Normal file
21
ADO2024/PI3/WorkItems/ValueWithReq.cs
Normal file
@ -0,0 +1,21 @@
|
||||
#if WorkItems
|
||||
namespace File_Folder_Helper.ADO2024.PI3.WorkItems;
|
||||
|
||||
public class ValueWithReq
|
||||
{
|
||||
public ValueWithReq(
|
||||
Value value,
|
||||
int req,
|
||||
string json
|
||||
)
|
||||
{
|
||||
Value = value;
|
||||
Req = req;
|
||||
Json = json;
|
||||
}
|
||||
|
||||
public Value Value { get; set; } // { init; get; }
|
||||
public int Req { get; set; } // { init; get; }
|
||||
public string Json { get; set; } // { init; get; }
|
||||
}
|
||||
#endif
|
Reference in New Issue
Block a user