Is there any advantage over using a class over a struct in cases such as these? (note: it will only hold variables, there will never be functions)
class Foo
Essentially the choice between a struct and a class comes down to your style and how much you want to type.