I´m programming a Class which acts as a Singleton. I was wondering, does it make sense to have non-static properties for this class?
Pseudocode example:
class Foo extends MySingletonClass {
private static string bar;
private string baz;
/* more code here */
}