Files

14 lines
307 B
C#
Raw Permalink Normal View History

2025-02-16 11:54:23 +01:00
namespace Wino.Core.Domain.Models.Calendar;
public class DayHeaderRenderModel
2024-11-10 23:28:25 +01:00
{
2025-02-16 11:54:23 +01:00
public DayHeaderRenderModel(string dayHeader, double hourHeight)
2024-11-10 23:28:25 +01:00
{
2025-02-16 11:54:23 +01:00
DayHeader = dayHeader;
HourHeight = hourHeight;
2025-02-16 11:43:30 +01:00
}
2025-02-16 11:54:23 +01:00
public string DayHeader { get; }
public double HourHeight { get; }
2024-11-10 23:28:25 +01:00
}