I've been refactoring Media Browser and have started to define a proper inheritance model for our domain objects
so I have
BaseItem
-> Video
--> <Need a name for this>
---> Episode
---> Movie
-> Folder
--> Season
Essentially tv show episodes and movies have some attributes in common (like actor or director listings) so I need a name for this common base class.
I don't want to chuck this in the Video base class, cause thing like mpegs that you record on your camera have no actors or directors so they are simply Videos ...
Any help with a name would be much appreciated..