Interface for data objects that have human-readable names.
Description
The INamed interface is used to define data objects containing a human-readable name.
Fields
Examples
class MyData implements IStringIdentifiable, INamed {
String id;
@override
String name;
String field1;
String field2;
...
}