Files
Wino-Mail/Wino.Calendar/Helpers/CalendarXamlHelpers.cs
2025-01-02 00:18:34 +01:00

13 lines
368 B
C#

using System.Linq;
using Wino.Calendar.ViewModels.Data;
using Wino.Core.Domain.Collections;
namespace Wino.Calendar.Helpers
{
public static class CalendarXamlHelpers
{
public static CalendarItemViewModel GetFirstAllDayEvent(CalendarEventCollection collection)
=> (CalendarItemViewModel)collection.AllDayEvents.FirstOrDefault();
}
}