Mail update source.

This commit is contained in:
Burak Kaan Köse
2026-01-27 21:21:04 +01:00
parent b343152f14
commit 0eba778158
10 changed files with 35 additions and 16 deletions
@@ -0,0 +1,17 @@
namespace Wino.Core.Domain.Enums;
/// <summary>
/// Indicates the source of a mail update.
/// </summary>
public enum MailUpdateSource
{
/// <summary>
/// Update originated from client-side UI changes (ApplyUIChanges/RevertUIChanges).
/// </summary>
Client,
/// <summary>
/// Update originated from server synchronization or database operations.
/// </summary>
Server
}