Forgot unversioned xd
This commit is contained in:
15
SVSim.EmulatedEntrypoint/Models/Dtos/Common/Reward.cs
Normal file
15
SVSim.EmulatedEntrypoint/Models/Dtos/Common/Reward.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
using MessagePack;
|
||||
|
||||
namespace SVSim.EmulatedEntrypoint.Models.Dtos.Common;
|
||||
|
||||
/// <summary>
|
||||
/// Stub for the Reward shape (spec: common/types.ts.md#reward). Fleshed out when actual
|
||||
/// reward-granting flows land. Today's endpoints all emit empty reward_list arrays.
|
||||
/// </summary>
|
||||
[MessagePackObject]
|
||||
public class Reward
|
||||
{
|
||||
[Key("type")] public int? Type { get; set; }
|
||||
[Key("value")] public long? Value { get; set; }
|
||||
[Key("num")] public int? Num { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user