Some is not getting the rule about "Do not use hard coded constants in your code"

time to read 1 min | 130 words

I run into this bit of code today:

public enum OriginalFromMainFrame
{
 
  Ten = 10,
    Twelve = 12,
    TwentyFive = 25
}

Some certainly heard about good software practices, but there is something left to be desired in the implementation...