11 lines
310 B
C#
11 lines
310 B
C#
namespace UtopiaCanteenSystem.Services;
|
|
|
|
public sealed class SyncNowResult
|
|
{
|
|
public int PendingCount { get; init; }
|
|
public int PostedCount { get; init; }
|
|
public int DuplicatesSkippedCount { get; init; }
|
|
public int FailedCount { get; init; }
|
|
public bool SkippedNoConnection { get; init; }
|
|
}
|