namespace UtopiaCanteenSystem.Models;
/// <summary>
/// Deployment role: central PC hosts SQLite and HTTP API; scanner PCs call the API only.
/// </summary>
public enum AppMode
{
Server = 0,
Client = 1
}