Taking the interface approach further, your classes that operate on your data would take in objects by interface e.g.:
public class IsinValidator
...
public bool Validate(IIsinSecurity security) {}
Taking the interface approach further, your classes that operate on your data would take in objects by interface e.g.:
public class IsinValidator
...