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