Files
Daybreak/Daybreak.Shared/Models/Options/OptionHeading.cs
amacocian 721ee8e494 Huge application refactoring to better support plugins (#960)
* Move shared code to Shared project
* Move from Realm to Squealify
* Rename Daybreak.Shared namespaces
* Setup API project to expose a test API
2025-05-14 16:15:27 +02:00

9 lines
247 B
C#

namespace Daybreak.Shared.Models.Options;
public sealed class OptionHeading
{
public string Title { get; init; } = string.Empty;
public string Description { get; init; } = string.Empty;
public double DesiredHeight { get; init; }
}