mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 22:17:22 +01:00
7 lines
199 B
C#
7 lines
199 B
C#
namespace MareSynchronos.Models;
|
|
|
|
public record OptionalPluginWarning
|
|
{
|
|
public bool ShownHeelsWarning { get; set; } = false;
|
|
public bool ShownCustomizePlusWarning { get; set; } = false;
|
|
}
|