My Goal: Create a C# class for predefined errors that have both an ID and a Message. Here was what I tried:
public class MyError { public static readonly
Your properties should not be static because every instance of this class will have their own ID and Message, do you agree?