namespace Wino.Core.Domain.Enums;
///
/// Indicates the source of an entity update.
///
public enum EntityUpdateSource
{
///
/// Update originated from client-side optimistic UI changes (ApplyUIChanges).
///
ClientUpdated,
///
/// Update originated from reverting client-side optimistic UI changes (RevertUIChanges).
///
ClientReverted,
///
/// Update originated from server synchronization or database operations.
///
Server
}