namespace Wino.Core.Domain.Enums; /// /// Indicates the source of a calendar item update. /// public enum CalendarItemUpdateSource { /// /// Update originated from client-side UI changes (ApplyUIChanges). /// ClientUpdated, /// /// Update originated from client-side UI revert (RevertUIChanges). /// ClientReverted, /// /// Update originated from server synchronization or database operations. /// Server }