using MessagePack;
using System.Text.Json.Serialization;
namespace SVSim.EmulatedEntrypoint.Models.Dtos;
///
/// The state of a user's tutorial progress.
///
[MessagePackObject]
public class UserTutorial
{
///
/// The current tutorial step they are on.
///
[JsonPropertyName("tutorial_step")]
[Key("tutorial_step")]
public int TutorialStep { get; set; }
}