16 lines
345 B
C#
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; }
|
|
} |