Files
ClubPenguinClient/MareSynchronos/Models/OptionalPluginWarning.cs
2023-01-30 09:43:57 +01:00

9 lines
262 B
C#

namespace MareSynchronos.Models;
public record OptionalPluginWarning
{
public bool ShownHeelsWarning { get; set; } = false;
public bool ShownCustomizePlusWarning { get; set; } = false;
public bool ShownPalettePlusWarning { get; set; } = false;
}