Files
SnowcloakClient/MareSynchronos/PlayerData/Pairs/OptionalPluginWarning.cs

10 lines
391 B
C#
Raw Normal View History

2025-08-22 02:19:48 +01:00
namespace MareSynchronos.PlayerData.Pairs;
public record OptionalPluginWarning
{
public bool ShownHeelsWarning { get; set; } = false;
public bool ShownCustomizePlusWarning { get; set; } = false;
public bool ShownHonorificWarning { get; set; } = false;
public bool ShowPetNicknamesWarning { get; set; } = false;
public bool ShownMoodlesWarning { get; set; } = false;
}