11 lines
165 B
C#
Raw Normal View History

2024-11-12 19:18:35 +03:00
namespace ProductionInCehOTP.Entities.Enums;
[Flags]
public enum NameOfMaterials
{
2024-11-13 12:32:01 +03:00
None = 0,
Metal = 1,
GraphiteDust = 2,
Soil = 4,
Oil = 8
2024-11-12 19:18:35 +03:00
}