10 lines
333 B
C#
10 lines
333 B
C#
namespace MareSynchronos.PlayerData.Pairs;
|
|
|
|
public record OptionalPluginWarning
|
|
{
|
|
public bool ShownHeelsWarning { get; set; } = false;
|
|
public bool ShownCustomizePlusWarning { get; set; } = false;
|
|
public bool ShownPalettePlusWarning { get; set; } = false;
|
|
public bool ShownHonorificWarning { get; set; } = false;
|
|
}
|