12 lines
241 B
C#
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
|
|
}
|