Utopia-Canteen-System/Models/AppMode.cs

11 lines
213 B
C#

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
}