Ready to start loading backlog
This commit is contained in:
19
Day/Q32024/WorkItems/ValueWithReq.cs
Normal file
19
Day/Q32024/WorkItems/ValueWithReq.cs
Normal file
@ -0,0 +1,19 @@
|
||||
namespace File_Folder_Helper.Day.Q32024.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; }
|
||||
}
|
Reference in New Issue
Block a user