|
namespace UtopiaCanteen.Shared;
|
|
|
|
public sealed class ManualSyncResponse
|
|
{
|
|
public bool Success { get; set; }
|
|
public string Message { get; set; } = string.Empty;
|
|
public DateTime? StartedAt { get; set; }
|
|
public DateTime? CompletedAt { get; set; }
|
|
public string? Details { get; set; }
|
|
}
|