14 lines
263 B
C#
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; }
|
|
}
|