namespace Extrudex.Domain.Enums; /// /// Indicates where the print job data originated from. /// public enum DataSource { /// Data reported by a Bambu Lab printer via MQTT. Mqtt = 0, /// Data reported by an Elegoo/Klipper printer via Moonraker. Moonraker = 1, /// Manually entered by a user. Manual = 2 }