10 lines
151 B
C#
Raw Normal View History

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