Files
Wino-Mail/Wino.Core.Domain/Enums/SynchronizationSource.cs
2025-02-16 11:54:23 +01:00

12 lines
241 B
C#

namespace Wino.Core.Domain.Enums;
/// <summary>
/// Enumeration for the source of synchronization.
/// Right now it can either be from the client or the server.
/// </summary>
public enum SynchronizationSource
{
Client,
Server
}