I have 3 different types of data: images, videos, and audio clips. Each one has an associated GPS point, so I have a base class as such:
public abstract class Data {
public Latitude { get; set; }
public Longitude { get; set; }
}
This is so I can plot everything on a map without worrying about what kind of data it is. However, I've been reading that POCO is not supposed be derived from anything except the base object
class in C#. Is this true?