mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
12 lines
310 B
C#
12 lines
310 B
C#
using Observatory.Framework;
|
|
|
|
namespace Botanist;
|
|
|
|
class BotanistSettings
|
|
{
|
|
[SettingDisplayName("Enable Sampler Status Overlay")]
|
|
public bool OverlayEnabled { get; set; }
|
|
|
|
[SettingDisplayName("Status Overlay is sticky until sampling is complete")]
|
|
public bool OverlayIsSticky { get; set; }
|
|
} |