Files
2024-09-12 00:35:31 -04:00

16 lines
345 B
C#

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