13 lines
279 B
C#
13 lines
279 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
|
|
}
|
|
}
|