Files
Wino-Mail/Wino.Core.Domain/Models/Calendar/CalendarContextMenuAction.cs
2026-04-08 23:48:17 +02:00

10 lines
305 B
C#

using Wino.Core.Domain.Enums;
namespace Wino.Core.Domain.Models.Calendar;
public sealed record CalendarContextMenuAction(
CalendarContextMenuActionType ActionType,
CalendarEventTargetType? TargetType = null,
CalendarItemShowAs? ShowAs = null,
CalendarItemStatus? ResponseStatus = null);