I will notice in the current code base, I work with the fact that the previous developer has a couple of public classes that are not inherited from any other classes, but are filled with static properties. Is this another way to create a structure or enumeration? Is this an older or newer method of storing static data that can be referenced? It seems strange / excellent to me to see a class constructed in this way, but I wonder what the Qaru community feels is trying to make this encoder.
EDITED add example
public class Deal { public Deal() { } public static decimal Fee { get { return (decimal)25; } } public static decimal MaximumAmount { get ( return (decimal)300; } } }
source share