Files
client/MareSynchronos/PlayerData/Pairs/OptionalPluginWarning.cs
Amber bf338ec697 Pet Nicknames IPC implementation (#74)
* Pet Nicknames IPC implementation

* Moodles works again
2024-09-10 09:13:34 +02:00

10 lines
391 B
C#

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 ShownMoodlesWarning { get; set; } = false;
public bool ShowPetNicknamesWarning { get; set; } = false;
}