Files
Burak Kaan Köse 8586d0ef54 Calendar rendering.
2026-03-23 10:22:47 +01:00

14 lines
263 B
C#

namespace Wino.Calendar.Controls;
public sealed class HeaderTextLayout
{
public HeaderTextLayout(string text, double width)
{
Text = text;
Width = width;
}
public string Text { get; set; }
public double Width { get; set; }
}