mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 18:37:22 +01:00
8 lines
262 B
C#
8 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;
|
|
}
|