mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-09-21 15:54:59 +00:00
* Move shared code to Shared project * Move from Realm to Squealify * Rename Daybreak.Shared namespaces * Setup API project to expose a test API
9 lines
247 B
C#
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; }
|
|
}
|