mirror of
https://github.com/riegera2412/UVtools.git
synced 2026-07-11 11:02:32 +02:00
33 lines
717 B
C#
33 lines
717 B
C#
/*
|
|
* GNU AFFERO GENERAL PUBLIC LICENSE
|
|
* Version 3, 19 November 2007
|
|
* Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
|
* Everyone is permitted to copy and distribute verbatim copies
|
|
* of this license document, but changing it is not allowed.
|
|
*/
|
|
namespace UVtools.Core.Printer
|
|
{
|
|
public enum PrinterBrand : byte
|
|
{
|
|
Generic,
|
|
Anet,
|
|
AnyCubic,
|
|
Creality,
|
|
Elegoo,
|
|
EPAX,
|
|
FlashForge,
|
|
Kelant,
|
|
Longer,
|
|
Nova3D,
|
|
Peopoly,
|
|
Phrozen,
|
|
Prusa,
|
|
QIDI,
|
|
Uniformation,
|
|
Uniz,
|
|
Voxelab,
|
|
Wanhao,
|
|
Zortrax,
|
|
}
|
|
}
|