Files
SVSimServer/SVSim.EmulatedEntrypoint/Models/Dtos/Common/Reward.cs
2026-05-23 14:18:18 -04:00

16 lines
471 B
C#

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; }
}